Patient-FayMutlow-Example

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

Patient
{
    "resourceType": "Patient",
    "id": "Patient-FayMutlow-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": "9449307806",
            "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": "RR12437",
            "assigner": {
                "identifier": {
                    "system": "https://fhir.nhs.uk/Id/ods-organization-code",
                    "value": "RGD12"
                }
            }
        }
    ],
    "name":  [
        {
            "given":  [
                "Fay"
            ],
            "family": "Mutlow"
        }
    ],
    "gender": "female",
    "birthDate": "1990-06-01",
    "deceasedBoolean": false,
    "address":  [
        {
            "line":  [
                "Union Mills",
                "9 Dewsbury Rd",
                "Leeds"
            ],
            "postalCode": "LSD11 5DD"
        }
    ],
    "generalPractitioner":  [
        {
            "identifier": {
                "system": "https://fhir.hl7.org.uk/Id/gmp-number",
                "value": "G9999999"
            },
            "display": "Dr. Test GP"
        },
        {
            "identifier": {
                "system": "https://fhir.hl7.org.uk/Id/ODS-code",
                "value": "B86012"
            },
            "display": "LEEDS CITY MEDICAL PRACTICE"
        }
    ]
}
<Patient xmlns="http://hl7.org/fhir">
    <id value="Patient-FayMutlow-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="9449307806" />
    </identifier>
    <identifier>
        <system value="urn:oid:2.16.840.1.113883.2.1.3.2.4.18.24" />
        <value value="RR12437" />
        <assigner>
            <identifier>
                <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
                <value value="RGD12" />
            </identifier>
        </assigner>
    </identifier>
    <name>
        <family value="Mutlow" />
        <given value="Fay" />
    </name>
    <gender value="female" />
    <birthDate value="1990-06-01" />
    <deceasedBoolean value="false" />
    <address>
        <line value="Union Mills" />
        <line value="9 Dewsbury Rd" />
        <line value="Leeds" />
        <postalCode value="LSD11 5DD" />
    </address>
    <generalPractitioner>
        <identifier>
            <system value="https://fhir.hl7.org.uk/Id/gmp-number" />
            <value value="G9999999" />
        </identifier>
        <display value="Dr. Test GP" />
    </generalPractitioner>
    <generalPractitioner>
        <identifier>
            <system value="https://fhir.hl7.org.uk/Id/ODS-code" />
            <value value="B86012" />
        </identifier>
        <display value="LEEDS CITY MEDICAL PRACTICE" />
    </generalPractitioner>
</Patient>