Patient-PheobeSmithamFather-Example

Example of a patient resource with minimal information.

Patient
{
    "resourceType": "Patient",
    "id": "Patient-PheobeSmithamFather-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"
                    }
                ]
            }
        }
    ],
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9449307636",
            "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":  [
                "James"
            ],
            "family": "Lawrence"
        }
    ],
    "gender": "male",
    "birthDate": "1981-08-03",
    "deceasedBoolean": false,
    "address":  [
        {
            "line":  [
                "1, Middlemead Close",
                "Bookham"
            ],
            "city": "Surrey",
            "postalCode": "KT23 3EB"
        }
    ],
    "generalPractitioner":  [
        {
            "identifier": {
                "system": "https://fhir.hl7.org.uk/Id/gmp-number",
                "value": "G9999999"
            },
            "display": "Dr. Bon Jovi"
        },
        {
            "identifier": {
                "system": "https://fhir.hl7.org.uk/Id/ODS-code",
                "value": "AIP123"
            },
            "display": "Anywhere Street"
        }
    ],
    "link":  [
        {
            "other": {
                "reference": "https://api.service.nhs.uk/personal-demographics/FHIR/R4/Patient/9449307636"
            },
            "type": "seealso"
        },
        {
            "other": {
                "reference": "RelatedPerson/RelatedPerson-AliceSmithamProbandFather-Example"
            },
            "type": "seealso"
        }
    ]
}
<Patient xmlns="http://hl7.org/fhir">
    <id value="Patient-PheobeSmithamFather-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>
    <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="9449307636" />
    </identifier>
    <name>
        <family value="Lawrence" />
        <given value="James" />
    </name>
    <gender value="male" />
    <birthDate value="1981-08-03" />
    <deceasedBoolean value="false" />
    <address>
        <line value="1, Middlemead Close" />
        <line value="Bookham" />
        <city value="Surrey" />
        <postalCode value="KT23 3EB" />
    </address>
    <generalPractitioner>
        <identifier>
            <system value="https://fhir.hl7.org.uk/Id/gmp-number" />
            <value value="G9999999" />
        </identifier>
        <display value="Dr. Bon Jovi" />
    </generalPractitioner>
    <generalPractitioner>
        <identifier>
            <system value="https://fhir.hl7.org.uk/Id/ODS-code" />
            <value value="AIP123" />
        </identifier>
        <display value="Anywhere Street" />
    </generalPractitioner>
    <link>
        <other>
            <reference value="https://api.service.nhs.uk/personal-demographics/FHIR/R4/Patient/9449307636" />
        </other>
        <type value="seealso" />
    </link>
    <link>
        <other>
            <reference value="RelatedPerson/RelatedPerson-AliceSmithamProbandFather-Example" />
        </other>
        <type value="seealso" />
    </link>
</Patient>