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 a clinical unit within a hospital
Table View
Location.id[0] | UKCore-Location-CardiologySJUH-Example |
Location.text[0].status[0] | additional |
Location.text[0].div[0] | <div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate a clinical unit within a hospital</div> |
Location.identifier[0].system[0] | https://fhir.nhs.uk/Id/ods-site-code |
Location.identifier[0].value[0] | RR8D7 |
Location.name[0] | CARDIOLOGY SJUH |
Location.type[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/v3-RoleCode |
Location.type[0].coding[0].code[0] | CARD |
Location.type[0].coding[0].display[0] | Ambulatory Health Care Facilities; Clinic/Center; Rehabilitation: Cardiac Facilities |
Location.telecom[0].system[0] | phone |
Location.telecom[0].value[0] | 0113 243 3149 |
Location.address[0].line[0] | CARDIOLOGY SJUH |
Location.address[0].line[1] | ST. JAMES'S UNIVERSITY HOSPITAL |
Location.address[0].line[2] | BECKETT STREET |
Location.address[0].city[0] | LEEDS |
Location.address[0].postalCode[0] | LS9 7TF |
Location.address[0].country[0] | ENGLAND |
Location.managingOrganization[0].reference[0] | Organization/UKCore-Organization-LeedsTeachingHospital-Example |
Tree View
Location |
id : UKCore-Location-CardiologySJUH-Example |
text |
status : additional |
identifier |
system : https://fhir.nhs.uk/Id/ods-site-code |
value : RR8D7 |
name : CARDIOLOGY SJUH |
type |
coding |
system : http://terminology.hl7.org/CodeSystem/v3-RoleCode |
code : CARD |
display : Ambulatory Health Care Facilities; Clinic/Center; Rehabilitation: Cardiac Facilities |
telecom |
system : phone |
value : 0113 243 3149 |
address |
line : CARDIOLOGY SJUH |
line : ST. JAMES'S UNIVERSITY HOSPITAL |
line : BECKETT STREET |
city : LEEDS |
postalCode : LS9 7TF |
country : ENGLAND |
managingOrganization |
reference : Organization/UKCore-Organization-LeedsTeachingHospital-Example |
XML View
<Location xmlns="http://hl7.org/fhir"> <id value="UKCore-Location-CardiologySJUH-Example" /> <text> <status value="additional" /> --- We have skipped the narrative for better readability of the resource --- </text> <identifier> <system value="https://fhir.nhs.uk/Id/ods-site-code" /> <value value="RR8D7" /> </identifier> <name value="CARDIOLOGY SJUH" /> <type> <coding> <system value="http://terminology.hl7.org/CodeSystem/v3-RoleCode" /> <code value="CARD" /> <display value="Ambulatory Health Care Facilities; Clinic/Center; Rehabilitation: Cardiac Facilities" /> </coding> </type> <telecom> <system value="phone" /> <value value="0113 243 3149" /> </telecom> <address> <line value="CARDIOLOGY SJUH" /> <line value="ST. JAMES'S UNIVERSITY HOSPITAL" /> <line value="BECKETT STREET" /> <city value="LEEDS" /> <postalCode value="LS9 7TF" /> <country value="ENGLAND" /> </address> <managingOrganization> <reference value="Organization/UKCore-Organization-LeedsTeachingHospital-Example" /> </managingOrganization> </Location>
JSON View
{ "resourceType": "Location", "id": "UKCore-Location-CardiologySJUH-Example", "text": { "status": "additional", --- We have skipped the narrative for better readability of the resource --- }, "identifier": [ { "system": "https://fhir.nhs.uk/Id/ods-site-code", "value": "RR8D7" } ], "name": "CARDIOLOGY SJUH", "type": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode", "code": "CARD", "display": "Ambulatory Health Care Facilities; Clinic/Center; Rehabilitation: Cardiac Facilities" } ] } ], "telecom": [ { "system": "phone", "value": "0113 243 3149" } ], "address": { "line": [ "CARDIOLOGY SJUH", "ST. JAMES'S UNIVERSITY HOSPITAL", "BECKETT STREET" ], "city": "LEEDS", "postalCode": "LS9 7TF", "country": "ENGLAND" }, "managingOrganization": { "reference": "Organization/UKCore-Organization-LeedsTeachingHospital-Example" } }