Please note:
- This version of the UK Core is a development copy.
- This contains BREAKING CHANGES as a result of the C&TA Sprint 7 Review, and STU2 Sequence ballot reconciliation.
- This version is not yet reviewed for implementation. Other versions are available on the UK Core Version History Guide
- Please follow the guidance on the Contact Us page if you need any assistance.
- A summary of changes is available on the STU3 Sequence Change Log
An example to illustrate the registered place of birth of the patient using the core-defined extension
Table View
Patient.id[0] | UKCore-Extension-BirthPlace-Example |
Patient.text[0].status[0] | additional |
Patient.text[0].div[0] | <div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate the registered place of birth of the patient using the core-defined extension</div> |
Patient.extension[0].url[0] | http://hl7.org/fhir/StructureDefinition/patient-birthPlace |
Patient.extension[0].value[0].line[0] | MATERNITY UNIT |
Patient.extension[0].value[0].line[1] | LENVILLE UNIVERSITY HOSPITAL |
Patient.extension[0].value[0].line[2] | BEWLEY STREET |
Patient.extension[0].value[0].city[0] | LENVILLE |
Patient.extension[0].value[0].postalCode[0] | LEN 7TF |
Patient.extension[0].value[0].country[0] | ENGLAND |
Tree View
Patient |
id : UKCore-Extension-BirthPlace-Example |
text |
status : additional |
extension |
url : http://hl7.org/fhir/StructureDefinition/patient-birthPlace |
value |
line : MATERNITY UNIT |
line : LENVILLE UNIVERSITY HOSPITAL |
line : BEWLEY STREET |
city : LENVILLE |
postalCode : LEN 7TF |
country : ENGLAND |
XML View
<Patient xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-BirthPlace-Example" /> <text> <status value="additional" /> --- We have skipped the narrative for better readability of the resource --- </text> <!-- **************extension start************** --> <extension url="http://hl7.org/fhir/StructureDefinition/patient-birthPlace"> <valueAddress> <line value="MATERNITY UNIT" /> <line value="LENVILLE UNIVERSITY HOSPITAL" /> <line value="BEWLEY STREET" /> <city value="LENVILLE" /> <postalCode value="LEN 7TF" /> <country value="ENGLAND" /> </valueAddress> </extension> <!-- **************extension end************** --> </Patient>
JSON View
{ "resourceType": "Patient", "id": "UKCore-Extension-BirthPlace-Example", "text": { "status": "additional", --- We have skipped the narrative for better readability of the resource --- }, "extension": [ { "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": { "line": [ "MATERNITY UNIT", "LENVILLE UNIVERSITY HOSPITAL", "BEWLEY STREET" ], "city": "LENVILLE", "postalCode": "LEN 7TF", "country": "ENGLAND" } } ] }