WHO Immunization Implementation Guide
0.2.0 - ci-build

WHO Immunization Implementation Guide, published by WHO. This guide is not an authorized publication; it is the continuous build for version 0.2.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/WorldHealthOrganization/smart-immunizations/ and changes regularly. See the Directory of published versions

StructureMap: IMMZ.D1.LMToBundle

Official URL: http://smart.who.int/immunizations/StructureMap/IMMZ.D1.LMToBundle Version: 0.2.0
Draft as of 2025-09-10 Computable Name: IMMZ.D1.LMToBundle

Immunization Administer Vaccine - Transform Logical Model to Immunization resources

map "http://smart.who.int/immunizations/StructureMap/IMMZ.D1.LMToBundle" = "IMMZ.D1.LMToBundle"

// Immunization Administer Vaccine - Transform Logical Model to Immunization resources

uses "http://smart.who.int/immunizations/StructureDefinition/IMMZD1" alias IMMZD1 as source
uses "http://hl7.org/fhir/StructureDefinition/Bundle" alias Bundle as target

imports "http://smart.who.int/immunizations/StructureMap/IMMZ.Helpers"

group IMMZD1ToBundle(source immz : IMMZD1, target bundle : Bundle) {
  immz -> bundle.type = 'transaction' "SetBundleType";
  immz.patient as patient -> uuid() as immid then {
    immz then MakeImmunization(patient, immid, immz, bundle) "MakeImmunization";
    immz then D1andD13Observations(patient, immid, immz, bundle) "MakeD1andD13Observations";
    immz then D1Observations(patient, immid, immz, bundle) "MakeD1Observations";
  } "GetPatient";
}