UK Core Implementation Guide 1.0.0 - STU1

An example to illustrate a baby patient

Table View

Patient.id[0]UKCore-Patient-BabyPatient-Example
Patient.text[0].status[0]additional
Patient.text[0].div[0]<div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate a patient that is a baby</div>
Patient.extension[0].url[0]https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-EthnicCategory
Patient.extension[0].value[0].coding[0].system[0]https://fhir.hl7.org.uk/CodeSystem/UKCore-EthnicCategoryEngland
Patient.extension[0].value[0].coding[0].code[0]A
Patient.extension[0].value[0].coding[0].display[0]White - British
Patient.identifier[0].extension[0].url[0]https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-NHSNumberVerificationStatus
Patient.identifier[0].extension[0].value[0].coding[0].system[0]https://fhir.hl7.org.uk/CodeSystem/UKCore-NHSNumberVerificationStatusEngland
Patient.identifier[0].extension[0].value[0].coding[0].code[0]01
Patient.identifier[0].extension[0].value[0].coding[0].display[0]Number present and verified
Patient.identifier[0].system[0]https://fhir.nhs.uk/Id/nhs-number
Patient.identifier[0].value[0]9912003890
Patient.name[0].use[0]official
Patient.name[0].family[0]JONES
Patient.name[0].given[0]Melanie
Patient.telecom[0].system[0]phone
Patient.telecom[0].value[0]01131231266
Patient.gender[0]female
Patient.birthDate[0]2021-02-11
Patient.birthDate[0].extension[0].url[0]http://hl7.org/fhir/StructureDefinition/patient-birthTime
Patient.birthDate[0].extension[0].value[0]2021-02-11T15:39:00+00:00
Patient.address[0].line[0]10 Fearnville Grove
Patient.address[0].city[0]LEEDS
Patient.address[0].postalCode[0]LS8 3DR

Tree View

Patient

XML View

<Patient xmlns="http://hl7.org/fhir">
<id value="UKCore-Patient-BabyPatient-Example" />
<status value="additional" />
--- We have skipped the narrative for better readability of the resource ---
</text>
<extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-EthnicCategory">
<system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-EthnicCategoryEngland" />
<code value="A" />
<display value="White - British" />
</coding>
</valueCodeableConcept>
</extension>
<extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-NHSNumberVerificationStatus">
<system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-NHSNumberVerificationStatusEngland" />
<code value="01" />
<display value="Number present and verified" />
</coding>
</valueCodeableConcept>
</extension>
<system value="https://fhir.nhs.uk/Id/nhs-number" />
<value value="9912003890" />
</identifier>
<use value="official" />
<family value="JONES" />
<given value="Melanie" />
</name>
<system value="phone" />
<value value="01131231266" />
</telecom>
<gender value="female" />
<birthDate value="2021-02-11">
<extension url="http://hl7.org/fhir/StructureDefinition/patient-birthTime">
<valueDateTime value="2021-02-11T15:39:00+00:00" />
</extension>
</birthDate>
<line value="10 Fearnville Grove" />
<city value="LEEDS" />
<postalCode value="LS8 3DR" />
</address>
</Patient>

JSON View

{
"resourceType": "Patient",
"id": "UKCore-Patient-BabyPatient-Example",
"text": {
"status": "additional",
--- We have skipped the narrative for better readability of the resource ---
},
{
"url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-EthnicCategory",
"coding": [
{
"system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-EthnicCategoryEngland",
"code": "A",
"display": "White - British"
}
]
}
}
],
{
{
"url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-NHSNumberVerificationStatus",
"coding": [
{
"system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-NHSNumberVerificationStatusEngland",
"code": "01",
"display": "Number present and verified"
}
]
}
}
],
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9912003890"
}
],
"name": [
{
"use": "official",
"family": "JONES",
"given": [
"Melanie"
]
}
],
"telecom": [
{
"system": "phone",
"value": "01131231266"
}
],
"gender": "female",
"birthDate": "2021-02-11",
{
"url": "http://hl7.org/fhir/StructureDefinition/patient-birthTime",
"valueDateTime": "2021-02-11T15:39:00+00:00"
}
]
},
"address": [
{
"line": [
"10 Fearnville Grove"
],
"city": "LEEDS",
"postalCode": "LS8 3DR"
}
]
}

back to top