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 an observation of a patient being assisted by oxygen theraphy
Table View
The resource cannot be rendered.
XML View
<Observation xmlns="http://hl7.org/fhir"> <id value="UKCore-Observation-OxygenTherapy-Example" /> <status value="final" /> <category> <coding> <system value="http://terminology.hl7.org/CodeSystem/observation-category" /> <code value="therapy" /> <display value="Therapy" /> </coding> </category> <code> <coding> <system value="http://snomed.info/sct" /> <code value="371825009" /> <display value="Patient on oxygen" /> </coding> </code> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> <effectiveDateTime value="2023-08-10" /> <performer> <reference value="Organization/UKCore-Organization-LeedsTeachingHospital-Example" /> </performer> <valueQuantity> <value value="2" /> <unit value="litre per minute" /> <system value="http://unitsofmeasure.org" /> <code value="l/min" /> </valueQuantity> </Observation>
JSON View
{ "resourceType": "Observation", "id": "UKCore-Observation-OxygenTherapy-Example", "status": "final", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "therapy", "display": "Therapy" } ] } ], "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "371825009", "display": "Patient on oxygen" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "performer": [ { "reference": "Organization/UKCore-Organization-LeedsTeachingHospital-Example" } ], "effectiveDateTime": "2023-08-10", "valueQuantity": { "value": 2, "unit": "litre per minute", "system": "http://unitsofmeasure.org", "code": "l/min" } }