NHS Digital FHIR Implementation Guide (Retired - 2.1.50)

This guidance is under active development by NHS Digital and content may be added or updated on a regular basis.

Patient - Richard Smith

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