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 the awareness of diagnosis
Table View
Observation.id[0] | UKCore-Observation-AwarenessOfDiagnosis-Example |
Observation.status[0] | final |
Observation.code[0].coding[0].system[0] | http://snomed.info/sct |
Observation.code[0].coding[0].code[0] | 162564003 |
Observation.code[0].coding[0].display[0] | Awareness of diagnosis |
Observation.subject[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
Observation.effective[0] | 2019-12-10T13:00:00+00:00 |
XML View
<Observation xmlns="http://hl7.org/fhir"> <id value="UKCore-Observation-AwarenessOfDiagnosis-Example" /> <status value="final" /> <code> <coding> <system value="http://snomed.info/sct" /> <code value="162564003" /> <display value="Awareness of diagnosis" /> </coding> </code> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> <effectiveInstant value="2019-12-10T13:00:00+00:00" /> </Observation>
JSON View
{ "resourceType": "Observation", "id": "UKCore-Observation-AwarenessOfDiagnosis-Example", "status": "final", "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "162564003", "display": "Awareness of diagnosis" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "effectiveInstant": "2019-12-10T13:00:00+00:00" }