Please note:
- This version of the UK Core is for C&TA Sprint 7 Review.
- This version is not suitable 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 general practice nurse clinic location
Table View
Location.id[0] | UKCore-Location-GeneralPracticeNurseClinic-Example |
Location.identifier[0].system[0] | https://fhir.nhs.uk/Id/ods-site-code |
Location.identifier[0].value[0] | GP8D7 |
Location.name[0] | WhiteRoseNurseClinic |
Location.type[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/v3-RoleCode |
Location.type[0].coding[0].code[0] | GIM |
Location.type[0].coding[0].display[0] | General internal medicine clinic |
Location.telecom[0].system[0] | phone |
Location.telecom[0].value[0] | 0113 243 3166 |
Location.managingOrganization[0].reference[0] | Organization/UKCore-Organization-WhiteRoseMedicalCentre-Example |
XML View
<Location xmlns="http://hl7.org/fhir"> <id value="UKCore-Location-GeneralPracticeNurseClinic-Example" /> <identifier> <system value="https://fhir.nhs.uk/Id/ods-site-code" /> <value value="GP8D7" /> </identifier> <name value="WhiteRoseNurseClinic" /> <type> <coding> <system value="http://terminology.hl7.org/CodeSystem/v3-RoleCode" /> <code value="GIM" /> <display value="General internal medicine clinic" /> </coding> </type> <telecom> <system value="phone" /> <value value="0113 243 3166" /> </telecom> <managingOrganization> <reference value="Organization/UKCore-Organization-WhiteRoseMedicalCentre-Example" /> </managingOrganization> </Location>
JSON View
{ "resourceType": "Location", "id": "UKCore-Location-GeneralPracticeNurseClinic-Example", "identifier": [ { "system": "https://fhir.nhs.uk/Id/ods-site-code", "value": "GP8D7" } ], "name": "WhiteRoseNurseClinic", "type": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode", "code": "GIM", "display": "General internal medicine clinic" } ] } ], "telecom": [ { "system": "phone", "value": "0113 243 3166" } ], "managingOrganization": { "reference": "Organization/UKCore-Organization-WhiteRoseMedicalCentre-Example" } }