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 an NHS Trust organisation
Table View
Organization.id[0] | UKCore-Organization-LeedsTeachingHospital-Example |
Organization.text[0].status[0] | additional |
Organization.text[0].div[0] | <div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate an NHS Trust organisation</div> |
Organization.identifier[0].use[0] | official |
Organization.identifier[0].system[0] | https://fhir.nhs.uk/Id/ods-organization-code |
Organization.identifier[0].value[0] | RR8 |
Organization.name[0] | LEEDS TEACHING HOSPITALS NHS TRUST |
Organization.telecom[0].system[0] | phone |
Organization.telecom[0].value[0] | 0113 243 3144 |
Organization.address[0].line[0] | ST. JAMES'S UNIVERSITY HOSPITAL |
Organization.address[0].line[1] | BECKETT STREET |
Organization.address[0].city[0] | LEEDS |
Organization.address[0].postalCode[0] | LS9 7TF |
Organization.address[0].country[0] | ENGLAND |
Tree View
Organization |
id : UKCore-Organization-LeedsTeachingHospital-Example |
text |
status : additional |
identifier |
use : official |
system : https://fhir.nhs.uk/Id/ods-organization-code |
value : RR8 |
name : LEEDS TEACHING HOSPITALS NHS TRUST |
telecom |
system : phone |
value : 0113 243 3144 |
address |
line : ST. JAMES'S UNIVERSITY HOSPITAL |
line : BECKETT STREET |
city : LEEDS |
postalCode : LS9 7TF |
country : ENGLAND |
XML View
<Organization xmlns="http://hl7.org/fhir"> <id value="UKCore-Organization-LeedsTeachingHospital-Example" /> <text> <status value="additional" /> --- We have skipped the narrative for better readability of the resource --- </text> <identifier> <use value="official" /> <system value="https://fhir.nhs.uk/Id/ods-organization-code" /> <value value="RR8" /> </identifier> <name value="LEEDS TEACHING HOSPITALS NHS TRUST" /> <telecom> <system value="phone" /> <value value="0113 243 3144" /> </telecom> <address> <line value="ST. JAMES'S UNIVERSITY HOSPITAL" /> <line value="BECKETT STREET" /> <city value="LEEDS" /> <postalCode value="LS9 7TF" /> <country value="ENGLAND" /> </address> </Organization>
JSON View
{ "resourceType": "Organization", "id": "UKCore-Organization-LeedsTeachingHospital-Example", "text": { "status": "additional", --- We have skipped the narrative for better readability of the resource --- }, "identifier": [ { "use": "official", "system": "https://fhir.nhs.uk/Id/ods-organization-code", "value": "RR8" } ], "name": "LEEDS TEACHING HOSPITALS NHS TRUST", "telecom": [ { "system": "phone", "value": "0113 243 3144" } ], "address": [ { "line": [ "ST. JAMES'S UNIVERSITY HOSPITAL", "BECKETT STREET" ], "city": "LEEDS", "postalCode": "LS9 7TF", "country": "ENGLAND" } ] }