Patient-LindsaySorrellPDS-Example

Example of a patient returned by a PDS search.

Patient
{
    "resourceType": "Patient",
    "id": "Patient-LindsaySorrellPDS-Example",
    "meta": {
        "versionId": "2",
        "security":  [
            {
                "system": "http://terminology.hl7.org/CodeSystem/v3-Confidentiality",
                "code": "U",
                "display": "unrestricted"
            }
        ]
    },
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9449307946",
            "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"
                            }
                        ]
                    }
                }
            ]
        }
    ],
    "name":  [
        {
            "given":  [
                "Lindsay"
            ],
            "family": "Sorrell"
        }
    ],
    "gender": "male",
    "birthDate": "2011-04-12",
    "address":  [
        {
            "line":  [
                "31 THE AVENUE",
                "BERWICK COURT"
            ]
        }
    ]
}
<Patient xmlns="http://hl7.org/fhir">
    <id value="Patient-LindsaySorrellPDS-Example" />
    <meta>
        <versionId value="2" />
        <security>
            <system value="http://terminology.hl7.org/CodeSystem/v3-Confidentiality" />
            <code value="U" />
            <display value="unrestricted" />
        </security>
    </meta>
    <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="9449307946" />
    </identifier>
    <name>
        <family value="Sorrell" />
        <given value="Lindsay" />
    </name>
    <gender value="male" />
    <birthDate value="2011-04-12" />
    <address>
        <line value="31 THE AVENUE" />
        <line value="BERWICK COURT" />
    </address>
</Patient>