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 care setting of a FHIR document
Table View
Composition.id[0] | UKCore-Extension-CareSettingType-Example |
Composition.text[0].status[0] | additional |
Composition.text[0].div[0] | <div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate the care setting of a FHIR document</div> |
Composition.extension[0].url[0] | https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-CareSettingType |
Composition.extension[0].value[0].coding[0].system[0] | http://snomed.info/sct |
Composition.extension[0].value[0].coding[0].code[0] | 789718008 |
Composition.extension[0].value[0].coding[0].display[0] | Cardiology service |
Composition.status[0] | final |
Composition.type[0].coding[0].system[0] | http://snomed.info/sct |
Composition.type[0].coding[0].code[0] | 373942005 |
Composition.type[0].coding[0].display[0] | Discharge summary |
Composition.date[0] | 2020-11-11T21:30:00+00:00 |
Composition.author[0].reference[0] | urn:uuid:6555b7a7-380d-46ff-a1c5-7abc4e68f8bc |
Composition.title[0] | Discharge summary |
Tree View
Composition |
id : UKCore-Extension-CareSettingType-Example |
text |
status : additional |
extension |
url : https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-CareSettingType |
value |
coding |
system : http://snomed.info/sct |
code : 789718008 |
display : Cardiology service |
status : final |
type |
coding |
system : http://snomed.info/sct |
code : 373942005 |
display : Discharge summary |
date : 2020-11-11T21:30:00+00:00 |
author |
reference : urn:uuid:6555b7a7-380d-46ff-a1c5-7abc4e68f8bc |
title : Discharge summary |
XML View
<Composition xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-CareSettingType-Example" /> <text> <status value="additional" /> --- We have skipped the narrative for better readability of the resource --- </text> <!-- **************extension start************** --> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-CareSettingType"> <valueCodeableConcept> <coding> <system value="http://snomed.info/sct" /> <code value="789718008" /> <display value="Cardiology service" /> </coding> </valueCodeableConcept> </extension> <!-- *************extension end ***************** --> <status value="final" /> <type> <!-- Discharge Summary document type --> <coding> <system value="http://snomed.info/sct" /> <code value="373942005" /> <display value="Discharge summary" /> </coding> </type> <date value="2020-11-11T21:30:00+00:00" /> <author> <reference value="urn:uuid:6555b7a7-380d-46ff-a1c5-7abc4e68f8bc" /> </author> <title value="Discharge summary" /> </Composition>
JSON View
{ "resourceType": "Composition", "id": "UKCore-Extension-CareSettingType-Example", "text": { "status": "additional", --- We have skipped the narrative for better readability of the resource --- }, "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-CareSettingType", "valueCodeableConcept": { "coding": [ { "system": "http://snomed.info/sct", "code": "789718008", "display": "Cardiology service" } ] } } ], "status": "final", "type": { "coding": [ { "system": "http://snomed.info/sct", "code": "373942005", "display": "Discharge summary" } ] }, "date": "2020-11-11T21:30:00+00:00", "author": [ { "reference": "urn:uuid:6555b7a7-380d-46ff-a1c5-7abc4e68f8bc" } ], "title": "Discharge summary" }