Patient - Richard Smith

{
    "resourceType": "Patient",
    "id": "440a0906-8638-4acd-b6b1-cd13159cebc7",
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9871223456"
        },
        {
            "system": "https://fhir.nhs.uk/Id/nhs-login-sub",
            "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
        }
    ],
    "name":  [
        {
            "use": "official",
            "family": "SMITH",
            "given":  [
                "Richard"
            ]
        }
    ],
    "telecom":  [
        {
            "system": "email",
            "value": "rsmith@test.com"
        },
        {
            "system": "phone",
            "use": "mobile",
            "value": "01131231234"
        }
    ],
    "gender": "male",
    "birthDate": "1970-09-11",
    "address":  [
        {
            "postalCode": "LS17 7DF"
        }
    ],
    "generalPractitioner":  [
        {
            "identifier": {
                "system": "https://fhir.nhs.uk/Id/ods-organization-code",
                "value": "B81001"
            }
        }
    ]
}
<Patient xmlns="http://hl7.org/fhir">
    <id value="440a0906-8638-4acd-b6b1-cd13159cebc7" />
    <identifier>
        <system value="https://fhir.nhs.uk/Id/nhs-number" />
        <value value="9871223456" />
    </identifier>
    <identifier>
        <system value="https://fhir.nhs.uk/Id/nhs-login-sub" />
        <value value="3fa85f64-5717-4562-b3fc-2c963f66afa6" />
    </identifier>
    <name>
        <use value="official" />
        <family value="SMITH" />
        <given value="Richard" />
    </name>
    <telecom>
        <system value="email" />
        <value value="rsmith@test.com" />
    </telecom>
    <telecom>
        <system value="phone" />
        <value value="01131231234" />
        <use value="mobile" />
    </telecom>
    <gender value="male" />
    <birthDate value="1970-09-11" />
    <address>
        <postalCode value="LS17 7DF" />
    </address>
    <generalPractitioner>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="B81001" />
        </identifier>
    </generalPractitioner>
</Patient>
Patient