Please note:
- This version of the UK Core is a development copy.
- This contains BREAKING CHANGES as a result of the C&TA Sprint 7 Review, and STU2 Sequence ballot reconciliation.
- This version is not yet reviewed 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.text[0].status[0] | additional |
| List.text[0].div[0] | <div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate an empty list</div> |
| 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 |
Tree View
| List |
| id : UKCore-List-EmptyList-Example |
| text |
| status : additional |
| 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 |
XML View
<List xmlns="http://hl7.org/fhir"> <id value="UKCore-List-EmptyList-Example" /> <text> <status value="additional" /> --- We have skipped the narrative for better readability of the resource --- </text> <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", "text": { "status": "additional", --- We have skipped the narrative for better readability of the resource --- }, "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" } ] } }