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.

EPS Prescription Cancel

{
    "resourceType": "CommunicationRequest",
    "id": "4bd6f1a8-a5aa-4d3b-833b-f0dae3222025",
    "status": "active",
    "subject": {
        "type": "Patient",
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9453740519"
        }
    },
    "payload":  [
        {
            "contentString": "Prescription for Methotrexate 10mg/0.2ml solution for injection pre-filled syringes (13 July 2020) has been cancelled"
        },
        {
            "contentReference": {
                "reference": "https://int.api.service.nhs.uk/electronic-prescriptions/MedicationRequest/a54219b8-f741-4c47-b662-e4f8dfa49ab6",
                "identifier": {
                    "system": "https://fhir.nhs.uk/Id/prescription-order-item-number",
                    "value": "a54219b8-f741-4c47-b662-e4f8dfa49ab6"
                }
            }
        }
    ],
    "requester": {
        "type": "Organization",
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "X2601"
        },
        "display": "NHS Digital Spine"
    },
    "recipient":  [
        {
            "type": "Patient",
            "identifier": {
                "system": "https://fhir.nhs.uk/Id/nhs-number",
                "value": "9453740519"
            }
        },
        {
            "type": "Organization",
            "identifier": {
                "system": "https://fhir.nhs.uk/Id/ods-organization-code",
                "value": "A99968"
            }
        }
    ],
    "reasonCode":  [
        {
            "coding":  [
                {
                    "system": "https://fhir.nhs.uk/CodeSystem/message-event",
                    "code": "prescription-order-response",
                    "display": "Prescription Order Response"
                }
            ]
        }
    ]
}
<CommunicationRequest xmlns="http://hl7.org/fhir">
    <id value="4bd6f1a8-a5aa-4d3b-833b-f0dae3222025" />
    <status value="active" />
    <subject>
        <type value="Patient" />
        <identifier>
            <system value="https://fhir.nhs.uk/Id/nhs-number" />
            <value value="9453740519" />
        </identifier>
    </subject>
    <payload>
        <contentString value="Prescription for Methotrexate 10mg/0.2ml solution for injection pre-filled syringes (13 July 2020) has been cancelled" />
    </payload>
    <payload>
        <contentReference>
            <reference value="https://int.api.service.nhs.uk/electronic-prescriptions/MedicationRequest/a54219b8-f741-4c47-b662-e4f8dfa49ab6" />
            <identifier>
                <system value="https://fhir.nhs.uk/Id/prescription-order-item-number" />
                <value value="a54219b8-f741-4c47-b662-e4f8dfa49ab6" />
            </identifier>
        </contentReference>
    </payload>
    <requester>
        <type value="Organization" />
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="X2601" />
        </identifier>
        <display value="NHS Digital Spine" />
    </requester>
    <recipient>
        <type value="Patient" />
        <identifier>
            <system value="https://fhir.nhs.uk/Id/nhs-number" />
            <value value="9453740519" />
        </identifier>
    </recipient>
    <recipient>
        <type value="Organization" />
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="A99968" />
        </identifier>
    </recipient>
    <reasonCode>
        <coding>
            <system value="https://fhir.nhs.uk/CodeSystem/message-event" />
            <code value="prescription-order-response" />
            <display value="Prescription Order Response" />
        </coding>
    </reasonCode>
</CommunicationRequest>
CommunicationRequest
back to top