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 recording a blood pressure device with a large cuff
Table View
Device.id[0] | UKCore-Extension-CuffSize-Example |
Device.text[0].status[0] | additional |
Device.text[0].div[0] | <div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate recording a blood pressure device with a large cuff</div> |
Device.extension[0].url[0] | https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-CuffSize |
Device.extension[0].value[0].coding[0].system[0] | http://snomed.info/sct |
Device.extension[0].value[0].coding[0].code[0] | 990191000000101 |
Device.extension[0].value[0].coding[0].display[0] | Large adult size blood pressure cuff |
Device.status[0] | active |
Device.type[0].coding[0].system[0] | http://snomed.info/sct |
Device.type[0].coding[0].code[0] | 39690000 |
Device.type[0].coding[0].display[0] | Sphygmomanometer |
Tree View
Device |
id : UKCore-Extension-CuffSize-Example |
text |
status : additional |
extension |
url : https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-CuffSize |
value |
coding |
system : http://snomed.info/sct |
code : 990191000000101 |
display : Large adult size blood pressure cuff |
status : active |
type |
coding |
system : http://snomed.info/sct |
code : 39690000 |
display : Sphygmomanometer |
XML View
<Device xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-CuffSize-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-CuffSize"> <valueCodeableConcept> <coding> <system value="http://snomed.info/sct" /> <code value="990191000000101" /> <display value="Large adult size blood pressure cuff" /> </coding> </valueCodeableConcept> </extension> <!-- **************extension end************** --> <status value="active" /> <type> <coding> <system value="http://snomed.info/sct" /> <code value="39690000" /> <display value="Sphygmomanometer" /> </coding> </type> </Device>
JSON View
{ "resourceType": "Device", "id": "UKCore-Extension-CuffSize-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-CuffSize", "valueCodeableConcept": { "coding": [ { "system": "http://snomed.info/sct", "code": "990191000000101", "display": "Large adult size blood pressure cuff" } ] } } ], "status": "active", "type": { "coding": [ { "system": "http://snomed.info/sct", "code": "39690000", "display": "Sphygmomanometer" } ] } }