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 sending the setting a vital signs observation was recorded in
Table View
The resource cannot be rendered.
XML View
<Observation xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-RecordingSetting-Example" /> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-RcordingSetting"> <valueCode value="residential" /> </extension> <status value="final" /> <category> <coding> <system value="http://terminology.hl7.org/CodeSystem/observation-category" /> <code value="vital-signs" /> <display value="Vital Signs" /> </coding> </category> <code> <coding> <system value="http://snomed.info/sct" /> <code value="75367002" /> <display value="Blood pressure" /> </coding> <coding> <system value="http://loinc.org" /> <code value="85354-9" /> <display value="Blood pressure panel with all children optional" /> </coding> <text value="Blood pressure" /> </code> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> <effectiveDateTime value="2023-09-10" /> <performer> <reference value="Organization/UKCore-Organization-LeedsTeachingHospital-Example" /> </performer> <component> <code> <coding> <system value="http://snomed.info/sct" /> <code value="72313002" /> <display value="Systolic arterial pressure" /> </coding> <coding> <system value="http://loinc.org" /> <code value="8480-6" /> <display value="Systolic blood pressure" /> </coding> <text value="Systolic blood pressure" /> </code> <valueQuantity> <value value="108" /> <unit value="millimeter of mercury" /> <system value="http://unitsofmeasure.org" /> <code value="mm[Hg]" /> </valueQuantity> </component> <component> <code> <coding> <system value="http://snomed.info/sct" /> <code value="1091811000000102" /> <display value="Diastolic arterial pressure" /> </coding> <coding> <system value="http://loinc.org" /> <code value="8462-4" /> <display value="Diastolic blood pressure" /> </coding> <text value="Diastolic blood pressure" /> </code> <valueQuantity> <value value="82" /> <unit value="millimeter of mercury" /> <system value="http://unitsofmeasure.org" /> <code value="mm[Hg]" /> </valueQuantity> </component> </Observation>
JSON View
{ "resourceType": "Observation", "id": "UKCore-Extension-RecordingSetting-Example", "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-RcordingSetting", "valueCode": "residential" } ], "status": "final", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "vital-signs", "display": "Vital Signs" } ] } ], "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "75367002", "display": "Blood pressure" }, { "system": "http://loinc.org", "code": "85354-9", "display": "Blood pressure panel with all children optional" } ], "text": "Blood pressure" }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "effectiveDateTime": "2023-09-10", "performer": [ { "reference": "Organization/UKCore-Organization-LeedsTeachingHospital-Example" } ], "component": [ { "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "72313002", "display": "Systolic arterial pressure" }, { "system": "http://loinc.org", "code": "8480-6", "display": "Systolic blood pressure" } ], "text": "Systolic blood pressure" }, "valueQuantity": { "value": 108, "unit": "millimeter of mercury", "system": "http://unitsofmeasure.org", "code": "mm[Hg]" } }, { "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "1091811000000102", "display": "Diastolic arterial pressure" }, { "system": "http://loinc.org", "code": "8462-4", "display": "Diastolic blood pressure" } ], "text": "Diastolic blood pressure" }, "valueQuantity": { "value": 82, "unit": "millimeter of mercury", "system": "http://unitsofmeasure.org", "code": "mm[Hg]" } } ] }