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 Notification

EPS Patient notification

{
    "resourceType": "CommunicationRequest",
    "id": "270de8ea-1fcc-4c0d-9928-f46248c66abb",
    "status": "active",
    "subject": {
        "reference": "urn:uuid:848d8470-bd51-494e-9347-8142ea75cb23"
    },
    "payload":  [
        {
            "contentString": "Please make an appointment to see your GP. Review date due"
        },
        {
            "contentReference": {
                "reference": "urn:uuid:d0f003a0-8763-43d5-a264-ce52a38901c9",
                "display": "List of Repeat Medications for re-ordering"
            }
        }
    ],
    "requester": {
        "type": "Organization",
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "RBA"
        },
        "display": "TAUNTON AND SOMERSET NHS FOUNDATION TRUST"
    },
    "recipient":  [
        {
            "type": "Patient",
            "identifier": {
                "system": "https://fhir.nhs.uk/Id/nhs-number",
                "value": "9453740519"
            }
        }
    ]
}
<CommunicationRequest xmlns="http://hl7.org/fhir">
    <id value="270de8ea-1fcc-4c0d-9928-f46248c66abb" />
    <status value="active" />
    <subject>
        <reference value="urn:uuid:848d8470-bd51-494e-9347-8142ea75cb23" />
    </subject>
    <payload>
        <contentString value="Please make an appointment to see your GP. Review date due" />
    </payload>
    <payload>
        <contentReference>
            <reference value="urn:uuid:d0f003a0-8763-43d5-a264-ce52a38901c9" />
            <display value="List of Repeat Medications for re-ordering" />
        </contentReference>
    </payload>
    <requester>
        <type value="Organization" />
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="RBA" />
        </identifier>
        <display value="TAUNTON AND SOMERSET NHS FOUNDATION TRUST" />
    </requester>
    <recipient>
        <type value="Patient" />
        <identifier>
            <system value="https://fhir.nhs.uk/Id/nhs-number" />
            <value value="9453740519" />
        </identifier>
    </recipient>
</CommunicationRequest>
CommunicationRequest
back to top