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 vaccination for flu
Table View
Immunization.id[0] | UKCore-Immunization-InfluenzaVaccine-Example |
Immunization.status[0] | completed |
Immunization.vaccineCode[0].coding[0].system[0] | https://dmd.nhs.uk |
Immunization.vaccineCode[0].coding[0].code[0] | 11278411000001109 |
Immunization.vaccineCode[0].coding[0].display[0] | Influenza vaccine (split virion, inactivated) suspension for injection 0.5ml pre-filled syringes (Pfizer Ltd) |
Immunization.patient[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
Immunization.occurrence[0] | 2013-01-10 |
Immunization.location[0].reference[0] | UKCore-Location-GeneralPracticeNurseClinic-Example |
XML View
<Immunization xmlns="http://hl7.org/fhir"> <id value="UKCore-Immunization-InfluenzaVaccine-Example" /> <status value="completed" /> <vaccineCode> <coding> <system value="https://dmd.nhs.uk" /> <code value="11278411000001109" /> <display value="Influenza vaccine (split virion, inactivated) suspension for injection 0.5ml pre-filled syringes (Pfizer Ltd)" /> </coding> </vaccineCode> <patient> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </patient> <occurrenceDateTime value="2013-01-10" /> <location> <reference value="UKCore-Location-GeneralPracticeNurseClinic-Example" /> </location> </Immunization>
JSON View
{ "resourceType": "Immunization", "id": "UKCore-Immunization-InfluenzaVaccine-Example", "status": "completed", "vaccineCode": { "coding": [ { "system": "https://dmd.nhs.uk", "code": "11278411000001109", "display": "Influenza vaccine (split virion, inactivated) suspension for injection 0.5ml pre-filled syringes (Pfizer Ltd)" } ] }, "patient": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "occurrenceDateTime": "2013-01-10", "location": { "reference": "UKCore-Location-GeneralPracticeNurseClinic-Example" } }