Patient-KayBurbridge-Example

Example of a patient resource with additional information attached, linked to a PDS record.

Patient
{
    "resourceType": "Patient",
    "id": "Patient-KayBurbridge-Example",
    "extension":  [
        {
            "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-BirthSex",
            "valueCodeableConcept": {
                "coding":  [
                    {
                        "system": "http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender",
                        "code": "F",
                        "display": "Female"
                    }
                ]
            }
        },
        {
            "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"
                    }
                ]
            }
        }
    ],
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "8449303541",
            "extension":  [
                {
                    "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-NHSNumberVerificationStatus",
                    "valueCodeableConcept": {
                        "coding":  [
                            {
                                "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-NHSNumberVerificationStatusEngland",
                                "version": "2.2.0",
                                "code": "01",
                                "display": "Number present and verified"
                            }
                        ]
                    }
                }
            ]
        },
        {
            "system": "urn:oid:2.16.840.1.113883.2.1.3.2.4.18.24",
            "value": "RD13423",
            "assigner": {
                "identifier": {
                    "system": "https://fhir.nhs.uk/Id/ods-organization-code",
                    "value": "RLU"
                }
            }
        }
    ],
    "name":  [
        {
            "given":  [
                "Kay"
            ],
            "family": "Burbridge"
        }
    ],
    "gender": "female",
    "birthDate": "1983-06-02",
    "deceasedBoolean": true,
    "address":  [
        {
            "line":  [
                "106 Telegraph Road",
                "Claygate",
                "Milton Keynes"
            ],
            "postalCode": "HR5 3PR"
        }
    ],
    "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": "TP123"
            },
            "display": "Test GP Practice"
        }
    ],
    "link":  [
        {
            "other": {
                "reference": "https://api.service.nhs.uk/personal-demographics/FHIR/R4/Patient/8449303541"
            },
            "type": "seealso"
        }
    ]
}
<Patient xmlns="http://hl7.org/fhir">
    <id value="Patient-KayBurbridge-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="F" />
                <display value="Female" />
            </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>
    <identifier>
        <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-NHSNumberVerificationStatus">
            <valueCodeableConcept>
                <coding>
                    <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-NHSNumberVerificationStatusEngland" />
                    <version value="2.2.0" />
                    <code value="01" />
                    <display value="Number present and verified" />
                </coding>
            </valueCodeableConcept>
        </extension>
        <system value="https://fhir.nhs.uk/Id/nhs-number" />
        <value value="8449303541" />
    </identifier>
    <identifier>
        <system value="urn:oid:2.16.840.1.113883.2.1.3.2.4.18.24" />
        <value value="RD13423" />
        <assigner>
            <identifier>
                <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
                <value value="RLU" />
            </identifier>
        </assigner>
    </identifier>
    <name>
        <family value="Burbridge" />
        <given value="Kay" />
    </name>
    <gender value="female" />
    <birthDate value="1983-06-02" />
    <deceasedBoolean value="true" />
    <address>
        <line value="106 Telegraph Road" />
        <line value="Claygate" />
        <line value="Milton Keynes" />
        <postalCode value="HR5 3PR" />
    </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="TP123" />
        </identifier>
        <display value="Test GP Practice" />
    </generalPractitioner>
    <link>
        <other>
            <reference value="https://api.service.nhs.uk/personal-demographics/FHIR/R4/Patient/8449303541" />
        </other>
        <type value="seealso" />
    </link>
</Patient>