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 the extension for an encounter to support the method of discharge from a hospital.
Table View
Encounter.id[0] | UKCore-Extension-DischargeMethod-Example |
Encounter.extension[0].url[0] | https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DischargeMethod |
Encounter.extension[0].value[0].coding[0].system[0] | https://fhir.hl7.org.uk/CodeSystem/UKCore-DischargeMethodEngland |
Encounter.extension[0].value[0].coding[0].code[0] | 1 |
Encounter.extension[0].value[0].coding[0].display[0] | Patient discharged on clinical advice or with clinical consent |
Encounter.status[0] | finished |
Encounter.class[0].system[0] | http://terminology.hl7.org/CodeSystem/v3-ActCode |
Encounter.class[0].code[0] | IMP |
Encounter.class[0].display[0] | inpatient encounter |
XML View
<Encounter xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-DischargeMethod-Example" /> <!-- **************extension start************** --> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DischargeMethod"> <valueCodeableConcept> <coding> <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-DischargeMethodEngland" /> <code value="1" /> <display value="Patient discharged on clinical advice or with clinical consent" /> </coding> </valueCodeableConcept> </extension> <!-- **************extension end************** --> <status value="finished" /> <class> <system value="http://terminology.hl7.org/CodeSystem/v3-ActCode" /> <code value="IMP" /> <display value="inpatient encounter" /> </class> </Encounter>
JSON View
{ "resourceType": "Encounter", "id": "UKCore-Extension-DischargeMethod-Example", "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DischargeMethod", "valueCodeableConcept": { "coding": [ { "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-DischargeMethodEngland", "code": "1", "display": "Patient discharged on clinical advice or with clinical consent" } ] } } ], "status": "finished", "class": { "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "IMP", "display": "inpatient encounter" } }