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.

Patient - Jack Dawkins

{
    "resourceType": "Patient",
    "id": "18d69a47-1a29-4de5-a942-7fd278f09dad",
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9912003888"
        }
    ],
    "name":  [
        {
            "use": "official",
            "family": "Dawkins",
            "given":  [
                "Jack"
            ]
        }
    ],
    "gender": "male",
    "birthDate": "1965-02-28",
    "address":  [
        {
            "use": "home",
            "postalCode": "AB12 3CD"
        }
    ],
    "generalPractitioner":  [
        {
            "identifier": {
                "system": "https://fhir.nhs.uk/Id/ods-organization-code",
                "value": "B81001"
            }
        }
    ]
}
<Patient xmlns="http://hl7.org/fhir">
    <id value="18d69a47-1a29-4de5-a942-7fd278f09dad" />
    <identifier>
        <system value="https://fhir.nhs.uk/Id/nhs-number" />
        <value value="9912003888" />
    </identifier>
    <name>
        <use value="official" />
        <family value="Dawkins" />
        <given value="Jack" />
    </name>
    <gender value="male" />
    <birthDate value="1965-02-28" />
    <address>
        <use value="home" />
        <postalCode value="AB12 3CD" />
    </address>
    <generalPractitioner>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="B81001" />
        </identifier>
    </generalPractitioner>
</Patient>
Patient
back to top