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 a finger joint inflammation observation
Table View
The resource cannot be rendered.
XML View
<Observation xmlns="http://hl7.org/fhir"> <id value="UKCore-Observation-FingerJointInflamed-Example" /> <identifier> <system value="https://tools.ietf.org/html/rfc4122" /> <value value="0733b27a-377b-4688-90be-eb7b9f462b91" /> </identifier> <status value="final" /> <category> <coding> <system value="http://terminology.hl7.org/CodeSystem/observation-category" /> <code value="exam" /> <display value="Exam" /> </coding> </category> <code> <coding> <system value="http://snomed.info/sct" /> <code value="298167002" /> <display value="Finger joint inflamed" /> </coding> </code> <performer> <reference value="Practitioner/UKCore-Practitioner-PharmacistJimmyChuck-Example" /> </performer> </Observation>
JSON View
{ "resourceType": "Observation", "id": "UKCore-Observation-FingerJointInflamed-Example", "identifier": [ { "system": "https://tools.ietf.org/html/rfc4122", "value": "0733b27a-377b-4688-90be-eb7b9f462b91" } ], "status": "final", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "exam", "display": "Exam" } ] } ], "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "298167002", "display": "Finger joint inflamed" } ] }, "performer": [ { "reference": "Practitioner/UKCore-Practitioner-PharmacistJimmyChuck-Example" } ] }