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 the extension for a vaccination procedure where the parent of the patient is present
Table View
| Immunization.id[0] | UKCore-Extension-ParentPresent-Example |
| Immunization.text[0].status[0] | additional |
| Immunization.text[0].div[0] | <div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate the extension for a vaccination procedure where the parent of the patient is present</div> |
| Immunization.extension[0].url[0] | https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-ParentPresent |
| Immunization.extension[0].value[0] | True |
| Immunization.status[0] | completed |
| Immunization.vaccineCode[0].coding[0].system[0] | https://dmd.nhs.uk |
| Immunization.vaccineCode[0].coding[0].code[0] | 10245211000001108 |
| Immunization.vaccineCode[0].coding[0].display[0] | Pneumococcal polysaccharide conjugated vaccine (adsorbed) suspension for injection 0.5ml pre-filled syringes |
| Immunization.patient[0].reference[0] | Patient/UKCore-Patient-BabyPatient-Example |
| Immunization.occurrence[0] | 2021-07-20 |
Tree View
| Immunization |
| id : UKCore-Extension-ParentPresent-Example |
| text |
| status : additional |
| extension |
| url : https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-ParentPresent |
| value : True |
| status : completed |
| vaccineCode |
| coding |
| system : https://dmd.nhs.uk |
| code : 10245211000001108 |
| display : Pneumococcal polysaccharide conjugated vaccine (adsorbed) suspension for injection 0.5ml pre-filled syringes |
| patient |
| reference : Patient/UKCore-Patient-BabyPatient-Example |
| occurrence : 2021-07-20 |
XML View
<Immunization xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-ParentPresent-Example" /> <text> <status value="additional" /> --- We have skipped the narrative for better readability of the resource --- </text> <!-- **************extension start************** --> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-ParentPresent"> <valueBoolean value="true" /> </extension> <!-- **************extension end************** --> <status value="completed" /> <vaccineCode> <coding> <system value="https://dmd.nhs.uk" /> <code value="10245211000001108" /> <display value="Pneumococcal polysaccharide conjugated vaccine (adsorbed) suspension for injection 0.5ml pre-filled syringes" /> </coding> </vaccineCode> <patient> <reference value="Patient/UKCore-Patient-BabyPatient-Example" /> </patient> <occurrenceDateTime value="2021-07-20" /> </Immunization>
JSON View
{ "resourceType": "Immunization", "id": "UKCore-Extension-ParentPresent-Example", "text": { "status": "additional", --- We have skipped the narrative for better readability of the resource --- }, "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-ParentPresent", "valueBoolean": true } ], "status": "completed", "vaccineCode": { "coding": [ { "system": "https://dmd.nhs.uk", "code": "10245211000001108", "display": "Pneumococcal polysaccharide conjugated vaccine (adsorbed) suspension for injection 0.5ml pre-filled syringes" } ] }, "patient": { "reference": "Patient/UKCore-Patient-BabyPatient-Example" }, "occurrenceDateTime": "2021-07-20" }