NHS England FHIR Implementation Guide (deprecated)

Important Announcement regarding this Implementation Guide
  • As of 04/10/2023, this implementation guide has been deprecated and all development on the legacy NHS England FHIR Implementation Guide assets has ceased.
  • Therefore, vendors looking to start new implementations or looking to update existing implementations should use the new NHS England Implementation Guide. Vendors continuing to implement legacy NHS England FHIR Implementation Guide based solutions do so at their own risk and on the understanding that no maintenance or support will be available.

Task - Check Prescription

A workflow process for a prescription order to be clinically checked

{
    "resourceType": "Task",
    "id": "ac990628-a2be-4213-9b03-f0ae83c70099",
    "contained":  [
        {
            "resourceType": "PractitionerRole",
            "id": "requester",
            "practitioner": {
                "identifier": {
                    "system": "https://fhir.nhs.uk/Id/sds-user-id",
                    "value": "2238910010"
                },
                "display": "Dr Liz Scott"
            },
            "organization": {
                "identifier": {
                    "system": "https://fhir.nhs.uk/Id/ods-organization-code",
                    "value": "RBA"
                },
                "display": "The Acute Trust"
            },
            "telecom":  [
                {
                    "system": "phone",
                    "use": "work",
                    "value": "01234567890"
                }
            ]
        }
    ],
    "identifier":  [
        {
            "system": "https://tools.ietf.org/html/rfc4122",
            "value": "ac990628-a2be-4213-9b03-f0ae83c70099"
        }
    ],
    "status": "requested",
    "intent": "order",
    "groupIdentifier": {
        "system": "https://fhir.nhs.uk/Id/prescription-order-number",
        "value": "83C40E-B81001-00123C"
    },
    "code": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "299441000000105",
                "display": "Checking prescription"
            }
        ]
    },
    "focus": {
        "reference": "MedicationRequest/ee86a018-779c-4809-999f-a9d89cdfd30f"
    },
    "for": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9453740519"
        },
        "display": "MISS ETTA CORY"
    },
    "authoredOn": "2022-04-15T12:00:00+00:00",
    "requester": {
        "reference": "#requester"
    },
    "note":  [
        {
            "text": "Can you check this prescription?"
        }
    ]
}
<Task xmlns="http://hl7.org/fhir">
    <id value="ac990628-a2be-4213-9b03-f0ae83c70099" />
    <contained>
        <PractitionerRole>
            <id value="requester" />
            <practitioner>
                <identifier>
                    <system value="https://fhir.nhs.uk/Id/sds-user-id" />
                    <value value="2238910010" />
                </identifier>
                <display value="Dr Liz Scott" />
            </practitioner>
            <organization>
                <identifier>
                    <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
                    <value value="RBA" />
                </identifier>
                <display value="The Acute Trust" />
            </organization>
            <telecom>
                <system value="phone" />
                <value value="01234567890" />
                <use value="work" />
            </telecom>
        </PractitionerRole>
    </contained>
    <identifier>
        <system value="https://tools.ietf.org/html/rfc4122" />
        <value value="ac990628-a2be-4213-9b03-f0ae83c70099" />
    </identifier>
    <groupIdentifier>
        <system value="https://fhir.nhs.uk/Id/prescription-order-number" />
        <value value="83C40E-B81001-00123C" />
    </groupIdentifier>
    <status value="requested" />
    <intent value="order" />
    <code>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="299441000000105" />
            <display value="Checking prescription" />
        </coding>
    </code>
    <focus>
        <reference value="MedicationRequest/ee86a018-779c-4809-999f-a9d89cdfd30f" />
    </focus>
    <for>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/nhs-number" />
            <value value="9453740519" />
        </identifier>
        <display value="MISS ETTA CORY" />
    </for>
    <authoredOn value="2022-04-15T12:00:00+00:00" />
    <requester>
        <reference value="#requester" />
    </requester>
    <note>
        <text value="Can you check this prescription?" />
    </note>
</Task>
Task
back to top