WHO Immunization Implementation Guide
0.1.0 - CI Build International flag

WHO Immunization Implementation Guide, published by World Health Organization (WHO). This guide is not an authorized publication; it is the continuous build for version 0.1.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:

Official URL: http://smart.who.int/ig/smart-immunizations/StructureMap/IMMZCQRToPatient Version: 0.1.0
Draft as of 2024-05-30 Computable Name: IMMZCQRToPatient
map "http://smart.who.int/ig/smart-immunizations/StructureMap/IMMZCQRToPatient" = "IMMZCQRToPatient"

uses "http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse" alias QResp as source
uses "http://smart.who.int/ig/smart-immunizations/StructureDefinition/IMMZCRegisterClient" alias IMMZC as source
uses "http://hl7.org/fhir/StructureDefinition/Patient" alias Patient as target

imports "http://smart.who.int/ig/smart-immunizations/StructureMap/IMMZCQRToLM"
imports "http://smart.who.int/ig/smart-immunizations/StructureMap/IMMZCLMToPatient"

group QRestToIMMZC(source qr : QResp, target patient : Patient) {
  qr -> create('http://smart.who.int/ig/smart-immunizations/StructureDefinition/IMMZCRegisterClient') as model then {
    qr -> model then QRespToIMMZC(qr, model) "QRtoLM";
    qr -> patient then IMMZCToPatient(model, patient) "LMtoPatient";
  } "QRtoPatient";
}