# Immunizations section (/entries required) (/V3) OID: 2.16.840.1.113883.10.20.22.2.2.1 LOINCs: #{"11369-6"} Alias: immunizations Entries Required: true Internal ID: ImmunizationsSectionentriesrequire [IG Link](https://www.hl7.org/ccdasearch/templates/2.16.840.1.113883.10.20.22.2.2.1.html) ## Immunization refusal example NB Immunization.status ```json { "patient" : { "resourceType" : "Patient", "id" : "patient" }, "meta" : { "profile" : [ "http://hl7.org/fhir/us/core/StructureDefinition/us-core-immunization" ] }, "vaccineCode" : { "coding" : [ { "code" : "166", "display" : "influenza, intradermal, quadrivalent, preservative free, injectable", "system" : "http://hl7.org/fhir/sid/cvx" } ] }, "statusReason" : { "coding" : [ { "code" : "PATOBJ", "display" : "patient objection", "system" : "http://terminology.hl7.org/CodeSystem/v3-ActReason" } ] }, "route" : null, "resourceType" : "Immunization", "recorded" : null, "primarySource" : false, "status" : "not-done", "id" : "09f1fbb5-766e-487c-8029-c3bf6cb056f0", "occurrence" : { "dateTime" : "2015-06-22T00:00:00-04:00" } } ``` C-CDA Equivalent: ```xml
Immunizations Section (entries required) (V3)
Vaccine Date Status Lot Notes
influenza, intradermal, quadrivalent, preservative free, injectable 06/22/2015 4:00AM UTC not-done ~ ~
``` ## sample1 ```json { "resourceType" : "Immunization", "id" : "e6f1ba43-c0ed-4b9b-9f12-f435d8ad8f92", "status" : "completed", "lotNumber" : "1", "vaccineCode" : { "coding" : [ { "code" : "88", "display" : "Influenza virus vaccine", "system" : "http://hl7.org/fhir/sid/cvx" } ] }, "occurrence" : { "dateTime" : "2010-08-15" }, "patient" : { "resourceType" : "Patient", "id" : "patient" }, "primarySource" : false } ``` C-CDA Equivalent: ```xml
Immunizations Section (entries required) (V3)
Vaccine Date Status Lot Notes
Influenza virus vaccine 08/15/2010 12:00AM UTC completed 1 ~
1
```