Indicates who performed the immunisation event by reference. The resource being referenced SHOULD conform to one of the following:
XML View
<Immunization xmlns="http://hl7.org/fhir">
<id value="UKCore-Immunization-Sn-Performer-Example" />
<status value="completed" />
<vaccineCode>
<coding>
<system value="https://dmd.nhs.uk" />
<code value="39114911000001105" />
<display value="COVID-19 Vaccine Vaxzevria (ChAdOx1 S [recombinant]) not less than 2.5x100,000,000 infectious units/0.5ml dose suspension for injection multidose vials (AstraZeneca UK Ltd)" />
</coding>
</vaccineCode>
<patient>
<reference value="Patient/UKCore-Patient-RichardSmith-Example" />
</patient>
<occurrenceDateTime value="2021-07-20" />
<performer>
<actor>
<type value="Practitioner" />
<identifier>
<system value="https://fhir.hl7.org.uk/Id/nmc-number" />
<value value="5566789" />
</identifier>
<display value="HOLDING, Rafferty" />
</actor>
</performer>
<performer>
<actor>
<type value="Organization" />
<identifier>
<system value="https://fhir.nhs.uk/Id/ods-organization-code" />
<value value="C4B2A" />
</identifier>
<display value="ELLAND ROAD STADIUM - COVID VACCINATION CENTRE" />
</actor>
</performer>
</Immunization>
JSON View
{
"resourceType": "Immunization",
"id": "UKCore-Immunization-Sn-Performer-Example",
"status": "completed",
"vaccineCode": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "39114911000001105",
"display": "COVID-19 Vaccine Vaxzevria (ChAdOx1 S [recombinant]) not less than 2.5x100,000,000 infectious units/0.5ml dose suspension for injection multidose vials (AstraZeneca UK Ltd)"
}
]
},
"patient": {
"reference": "Patient/UKCore-Patient-RichardSmith-Example"
},
"occurrenceDateTime": "2021-07-20",
"performer": [
{
"actor": {
"type": "Practitioner",
"identifier": {
"system": "https://fhir.hl7.org.uk/Id/nmc-number",
"value": "5566789"
},
"display": "HOLDING, Rafferty"
}
},
{
"actor": {
"type": "Organization",
"identifier": {
"system": "https://fhir.nhs.uk/Id/ods-organization-code",
"value": "C4B2A"
},
"display": "ELLAND ROAD STADIUM - COVID VACCINATION CENTRE"
}
}
]
}