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
UKCore-Extension-CodingSCT-Weight-Example
Table View
Observation.id[0] | UKCore-Extension-CodingSCT-Weight-Example |
Observation.status[0] | final |
Observation.code[0].coding[0].extension[0].url[0] | https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-CodingSCTDescDisplay |
Observation.code[0].coding[0].extension[0].value[0] | Ideal weight |
Observation.code[0].coding[0].extension[1].url[0] | http://hl7.org/fhir/StructureDefinition/coding-sctdescid |
Observation.code[0].coding[0].extension[1].value[0] | 787121000006116 |
Observation.code[0].coding[0].system[0] | http://snomed.info/sct |
Observation.code[0].coding[0].code[0] | 170804003 |
Observation.code[0].coding[0].display[0] | Ideal body weight |
Observation.code[0].coding[0].userSelected[0] | True |
Observation.subject[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
Tree View
Observation |
id : UKCore-Extension-CodingSCT-Weight-Example |
status : final |
code |
coding |
extension |
url : https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-CodingSCTDescDisplay |
value : Ideal weight |
extension |
url : http://hl7.org/fhir/StructureDefinition/coding-sctdescid |
value : 787121000006116 |
system : http://snomed.info/sct |
code : 170804003 |
display : Ideal body weight |
userSelected : True |
subject |
reference : Patient/UKCore-Patient-RichardSmith-Example |
XML View
<Observation xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-CodingSCT-Weight-Example" /> <status value="final" /> <!-- **************Snippet start************** --> <code> <coding> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-CodingSCTDescDisplay"> <valueString value="Ideal weight" /> </extension> <extension url="http://hl7.org/fhir/StructureDefinition/coding-sctdescid"> <valueId value="787121000006116" /> <!-- descriptionId from a GP system namespace --> </extension> <system value="http://snomed.info/sct" /> <code value="170804003" /> <!-- conceptId from SNOMED International CORE --> <display value="Ideal body weight" /> <userSelected value="true" /> </coding> </code> <!-- **************Snippet end************** --> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> </Observation>
JSON View
{ "resourceType": "Observation", "id": "UKCore-Extension-CodingSCT-Weight-Example", "status": "final", "code": { "coding": [ { "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-CodingSCTDescDisplay", "valueString": "Ideal weight" }, { "url": "http://hl7.org/fhir/StructureDefinition/coding-sctdescid", "valueId": "787121000006116" } ], "system": "http://snomed.info/sct", "code": "170804003", "display": "Ideal body weight", "userSelected": true } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" } }