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 empty list
Table View
List.id[0] | UKCore-List-EmptyList-Example |
List.status[0] | current |
List.mode[0] | working |
List.code[0].coding[0].system[0] | http://snomed.info/sct |
List.code[0].coding[0].code[0] | 826501000000100 |
List.code[0].coding[0].display[0] | Miscellaneous record |
List.subject[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
List.date[0] | 2019-12-10T13:00:00+00:00 |
List.emptyReason[0].coding[0].system[0] | https://fhir.hl7.org.uk/CodeSystem/UKCore-ListEmptyReasonCode |
List.emptyReason[0].coding[0].code[0] | no-content-recorded |
List.emptyReason[0].coding[0].display[0] | No Content Recorded |
XML View
<List xmlns="http://hl7.org/fhir"> <id value="UKCore-List-EmptyList-Example" /> <status value="current" /> <mode value="working" /> <code> <coding> <system value="http://snomed.info/sct" /> <code value="826501000000100" /> <display value="Miscellaneous record" /> </coding> </code> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> <date value="2019-12-10T13:00:00+00:00" /> <emptyReason> <coding> <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-ListEmptyReasonCode" /> <code value="no-content-recorded" /> <display value="No Content Recorded" /> </coding> </emptyReason> </List>
JSON View
{ "resourceType": "List", "id": "UKCore-List-EmptyList-Example", "status": "current", "mode": "working", "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "826501000000100", "display": "Miscellaneous record" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "date": "2019-12-10T13:00:00+00:00", "emptyReason": { "coding": [ { "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-ListEmptyReasonCode", "code": "no-content-recorded", "display": "No Content Recorded" } ] } }