Patient-LindsaySorrellNHSNumberUnavailable-Example

Example of a patient resource with no NHS Number. In this case the NHSNumberUnavailableReason extension SHOULD be present to outline why an NHS number was not provided.

Patient
{
    "resourceType": "Patient",
    "id": "Patient-LindsaySorrellNHSNumberUnavailable-Example",
    "extension":  [
        {
            "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-BirthSex",
            "valueCodeableConcept": {
                "coding":  [
                    {
                        "system": "http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender",
                        "code": "M",
                        "display": "Male"
                    }
                ]
            }
        },
        {
            "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-EthnicCategory",
            "valueCodeableConcept": {
                "coding":  [
                    {
                        "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-EthnicCategoryEngland",
                        "code": "A",
                        "display": "White - British"
                    }
                ]
            }
        },
        {
            "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-NHSNumberUnavailableReason",
            "valueCodeableConcept": {
                "coding":  [
                    {
                        "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-NHSNumberUnavailableReason",
                        "code": "overseas-patient",
                        "display": "Overseas patient"
                    }
                ]
            }
        }
    ],
    "identifier":  [
        {
            "system": "urn:oid:2.16.840.1.113883.2.1.3.2.4.18.24",
            "value": "RWT14789",
            "assigner": {
                "identifier": {
                    "system": "https://fhir.nhs.uk/Id/ods-organization-code",
                    "value": "RAX01"
                }
            }
        }
    ],
    "name":  [
        {
            "given":  [
                "Lindsay"
            ],
            "family": "Sorrell"
        }
    ],
    "birthDate": "2011-04-12",
    "deceasedBoolean": false,
    "address":  [
        {
            "line":  [
                "31 THE AVENUE",
                "BERWICK COURT"
            ],
            "postalCode": "KT4 7BS"
        }
    ],
    "generalPractitioner":  [
        {
            "identifier": {
                "system": "https://fhir.hl7.org.uk/Id/gmp-number",
                "value": "G9999999"
            },
            "display": "Dr. Aero Smith"
        },
        {
            "identifier": {
                "system": "https://fhir.hl7.org.uk/Id/ODS-code",
                "value": "AP123"
            },
            "display": "anywhere place"
        }
    ],
    "link":  [
        {
            "other": {
                "reference": "https://api.service.nhs.uk/personal-demographics/FHIR/R4/Patient/9449307946"
            },
            "type": "seealso"
        }
    ]
}
<Patient xmlns="http://hl7.org/fhir">
    <id value="Patient-LindsaySorrellNHSNumberUnavailable-Example" />
    <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-BirthSex">
        <valueCodeableConcept>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender" />
                <code value="M" />
                <display value="Male" />
            </coding>
        </valueCodeableConcept>
    </extension>
    <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-EthnicCategory">
        <valueCodeableConcept>
            <coding>
                <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-EthnicCategoryEngland" />
                <code value="A" />
                <display value="White - British" />
            </coding>
        </valueCodeableConcept>
    </extension>
    <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-NHSNumberUnavailableReason">
        <valueCodeableConcept>
            <coding>
                <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-NHSNumberUnavailableReason" />
                <code value="overseas-patient" />
                <display value="Overseas patient" />
            </coding>
        </valueCodeableConcept>
    </extension>
    <identifier>
        <system value="urn:oid:2.16.840.1.113883.2.1.3.2.4.18.24" />
        <value value="RWT14789" />
        <assigner>
            <identifier>
                <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
                <value value="RAX01" />
            </identifier>
        </assigner>
    </identifier>
    <name>
        <family value="Sorrell" />
        <given value="Lindsay" />
    </name>
    <birthDate value="2011-04-12" />
    <deceasedBoolean value="false" />
    <address>
        <line value="31 THE AVENUE" />
        <line value="BERWICK COURT" />
        <postalCode value="KT4 7BS" />
    </address>
    <generalPractitioner>
        <identifier>
            <system value="https://fhir.hl7.org.uk/Id/gmp-number" />
            <value value="G9999999" />
        </identifier>
        <display value="Dr. Aero Smith" />
    </generalPractitioner>
    <generalPractitioner>
        <identifier>
            <system value="https://fhir.hl7.org.uk/Id/ODS-code" />
            <value value="AP123" />
        </identifier>
        <display value="anywhere place" />
    </generalPractitioner>
    <link>
        <other>
            <reference value="https://api.service.nhs.uk/personal-demographics/FHIR/R4/Patient/9449307946" />
        </other>
        <type value="seealso" />
    </link>
</Patient>