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 - Fulfil Patient Referral

{
    "resourceType": "Task",
    "id": "f9ba86b1-2c3d-441f-840f-324396128771",
    "contained":  [
        {
            "resourceType": "PractitionerRole",
            "id": "requester",
            "practitioner": {
                "identifier": {
                    "system": "https://fhir.nhs.uk/Id/sds-user-id",
                    "value": "0987654321"
                }
            },
            "organization": {
                "identifier": {
                    "system": "https://fhir.nhs.uk/Id/ods-organization-code",
                    "value": "RR8"
                },
                "display": "LEEDS TEACHING HOSPITALS NHS TRUST"
            }
        }
    ],
    "status": "requested",
    "intent": "order",
    "identifier":  [
        {
            "system": "https://tools.ietf.org/html/rfc4122",
            "value": "f9ba86b1-2c3d-441f-840f-324396128771"
        }
    ],
    "code": {
        "coding":  [
            {
                "system": "http://hl7.org/fhir/CodeSystem/task-code",
                "code": "fulfill",
                "display": "Fulfill the focal request"
            }
        ]
    },
    "focus": {
        "reference": "https://api.ers-service.nhs.uk/FHIR/R4/ServiceRequest/dafb61c6-7042-40aa-a72d-843f1936b573",
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/UBRN",
            "value": "000000070000"
        }
    },
    "for": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9446368138"
        }
    },
    "owner": {
        "reference": "https://directory.spineservices.nhs.uk/R4/Organization/RR8",
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "RR8"
        }
    },
    "requester": {
        "reference": "#requester"
    },
    "authoredOn": "2021-10-09T12:00:00+00:00",
    "reasonCode": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "306185001",
                "display": "Referral to cardiac surgery service"
            }
        ]
    }
}
<Task xmlns="http://hl7.org/fhir">
    <id value="f9ba86b1-2c3d-441f-840f-324396128771" />
    <contained>
        <PractitionerRole>
            <id value="requester" />
            <practitioner>
                <identifier>
                    <system value="https://fhir.nhs.uk/Id/sds-user-id" />
                    <value value="0987654321" />
                </identifier>
            </practitioner>
            <organization>
                <identifier>
                    <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
                    <value value="RR8" />
                </identifier>
                <display value="LEEDS TEACHING HOSPITALS NHS TRUST" />
            </organization>
        </PractitionerRole>
    </contained>
    <identifier>
        <system value="https://tools.ietf.org/html/rfc4122" />
        <value value="f9ba86b1-2c3d-441f-840f-324396128771" />
    </identifier>
    <status value="requested" />
    <intent value="order" />
    <code>
        <coding>
            <system value="http://hl7.org/fhir/CodeSystem/task-code" />
            <code value="fulfill" />
            <display value="Fulfill the focal request" />
        </coding>
    </code>
    <focus>
        <reference value="https://api.ers-service.nhs.uk/FHIR/R4/ServiceRequest/dafb61c6-7042-40aa-a72d-843f1936b573" />
        <identifier>
            <system value="https://fhir.nhs.uk/Id/UBRN" />
            <value value="000000070000" />
        </identifier>
    </focus>
    <for>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/nhs-number" />
            <value value="9446368138" />
        </identifier>
    </for>
    <authoredOn value="2021-10-09T12:00:00+00:00" />
    <requester>
        <reference value="#requester" />
    </requester>
    <owner>
        <reference value="https://directory.spineservices.nhs.uk/R4/Organization/RR8" />
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="RR8" />
        </identifier>
    </owner>
    <reasonCode>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="306185001" />
            <display value="Referral to cardiac surgery service" />
        </coding>
    </reasonCode>
</Task>
Task
back to top