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 warning being provided in a list resource
Table View
List.id[0] | UKCore-Extension-ListWarningCode-Example |
List.extension[0].url[0] | https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-ListWarningCode |
List.extension[0].value[0] | data-in-transit |
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] | 2021-12-10T13:00:00+00:00 |
XML View
<List xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-ListWarningCode-Example" /> <!-- **************extension start************** --> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-ListWarningCode"> <valueCode value="data-in-transit" /> </extension> <!-- **************extension end************** --> <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="2021-12-10T13:00:00+00:00" /> </List>
JSON View
{ "resourceType": "List", "id": "UKCore-Extension-ListWarningCode-Example", "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-ListWarningCode", "valueCode": "data-in-transit" } ], "status": "current", "mode": "working", "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "826501000000100", "display": "Miscellaneous record" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "date": "2021-12-10T13:00:00+00:00" }