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 the observation of a patient who smokes a pipe
Table View
The resource cannot be rendered.
XML View
<Observation xmlns="http://hl7.org/fhir"> <id value="UKCore-Observation-PipeSmoker-Example" /> <status value="final" /> <category> <coding> <system value="http://terminology.hl7.org/CodeSystem/observation-category" /> <code value="social-history" /> <display value="Social History" /> </coding> </category> <code> <coding> <system value="http://snomed.info/sct" /> <code value="230058003" /> <display value="Pipe tobacco consumption" /> </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="5" /> <unit value="per day" /> <system value="http://unitsofmeasure.org" /> <code value="/d" /> </valueQuantity> </Observation>
JSON View
{ "resourceType": "Observation", "id": "UKCore-Observation-PipeSmoker-Example", "status": "final", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "social-history", "display": "Social History" } ] } ], "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "230058003", "display": "Pipe tobacco consumption" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "effectiveDateTime": "2023-08-10", "performer": [ { "reference": "Organization/UKCore-Organization-LeedsTeachingHospital-Example" } ], "valueQuantity": { "value": 5, "code": "/d", "system": "http://unitsofmeasure.org", "unit": "per day" } }