D2A Trigger Task

The D2A Trigger Task will be created as soon as a Patient is flagged as a Supported Discharge in the relevant hospital system (e.g. Nervecentre). The exact rules for creating the task may be different in each hospital system, in some cases it my by a check box/flag, in others it could be a drop down where multiple value equate to a support required flag.

The record of whether support is required may change, so the local processes will need to cater for patients being initially marked as requiring support and then this being changed.

The D2A Trigger Task will comprise of the following attributes

Attribute Cardinality Type Details
meta.profile 1..1 url Fixed: https://fhir.hl7.org.uk/STU3/StructureDefinition/CareConnect-Task-1
id 1..1 string Unique id for updates and referencing
status 1..1 code 'requested' when patient flagged as needing support
'cancelled' if patient subsequently flagged as NOT needing support
'completed' when patient has been successfuly discharged

Note if a patient is re-flagged as requiring support, following a task being cancelled, a new task should be created
intent 1..1 code Fixed: order
code.coding 1..1 code Fixed:
"system": "http://snomed.info/sct",
"code": "718524000",
"display": "Referral to discharge planning team"
authoredOn 1..1 DateTime Date/Time that the supported flag was set
for 1..1 Reference Reference to the relevant Patient FHIR Resource
context 1..1 Reference Reference to the relevant Encounter FHIR Resource
owner 1..1 Reference Reference to the Organisation FHIR Resource for the relevant ToC Hub

Example

Example of a D2A Trigger Task :

{
    "resourceType": "Task",
    "id": "D2A-Trigger-Task-Example",
    "meta": {
        "profile":  [
            "https://fhir.hl7.org.uk/STU3/StructureDefinition/CareConnect-Task-1"
        ]
    },
    "status": "requested",
    "intent": "order",
    "code": {
        "coding":  [
            {
                "code": "718524000",
                "display": "Referral to discharge planning team",
                "system": "http://snomed.info/sct"
            }
        ]
    },
    "authoredOn": "2024-02-15T16:02:28.289Z",
    "for": {
        "reference": "Patient/9999999999"
    },
    "context": {
        "reference": "Encounter/acute-inpatient-encounter"
    },
    "owner": {
        "reference": "Organization/F1L4Q",
        "display": "SOUTH NOTTS TRANSFER OF CARE HUB"
    }
}

D2A Home