WHO SMART Guidelines - Measles Immunization
0.1.0 - ci-build
WHO SMART Guidelines - Measles Immunization, published by 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-example-immz and changes regularly. See the Directory of published versions
Official URL: http://smart.who.int/immunizations-measles/Library/IMMZD2DTMeaslesLogic | Version: 0.1.0 | |||
Draft as of 2024-08-12 | Computable Name: IMMZD2DTMeaslesLogic |
This library defines decision support logic for the D2.DT.Measles decision table in the Immunization CPG
Generated Narrative: Library IMMZD2DTMeaslesLogic
Depends On | Library WC | http://smart.who.int/immunizations-measles/Library/WHOCommon |
Depends On | Library Concepts | IMMZConcepts |
Depends On | Library Common | IMMZCommon |
Depends On | Library Config | IMMZConfig |
Depends On | Library Elements | IMMZEncounterElements |
Today | in | 0 | 1 | date |
Individual is at high risk of contracting measles | in | 0 | 1 | boolean |
Individual is travelling to a country experiencing measles outbreaks | in | 0 | 1 | boolean |
Individual is known to be HIV-infected or exposed | in | 0 | 1 | boolean |
Immune reconstitution was achieved | in | 0 | 1 | boolean |
Patient | out | 0 | 1 | Patient |
Most Recent Live Vaccine Dose | out | 0 | 1 | Immunization |
Date Last Live Vaccine Administered | out | 0 | 1 | date |
No Live Vaccine Administered | out | 0 | 1 | boolean |
Number Of MCV0 Doses Administered | out | 0 | 1 | integer |
Number Of Primary Series Doses Administered | out | 0 | 1 | integer |
Measles Routine Immunization Schedule Complete | out | 0 | 1 | boolean |
Measles Routine Immunization Schedule Incomplete | out | 0 | 1 | boolean |
Number Of Supplementary Doses Administered | out | 0 | 1 | integer |
Draft Medication Request ID for MCV dose | out | 0 | 1 | id |
text/cql
/*
@Description: Common logic used in all the measles decisions
*/
library IMMZD2DTMeaslesLogic
using FHIR version '4.0.1'
include FHIRHelpers version '4.0.1'
include WHOCommon called WC
include IMMZConcepts called Concepts
include IMMZCommon called Common
include IMMZConfig called Config
include IMMZEncounterElements called Elements
parameter Today default Today()
// TODO: Should these be data elements?
parameter "Individual is at high risk of contracting measles" Boolean default false
parameter "Individual is travelling to a country experiencing measles outbreaks" Boolean default false
parameter "Individual is known to be HIV-infected or exposed" Boolean default false
parameter "Immune reconstitution was achieved" Boolean default false
context Patient
define "Most Recent Live Vaccine Dose":
Elements."Live vaccine dose".mostRecent()
define "Date Last Live Vaccine Administered":
date from start of "Most Recent Live Vaccine Dose".occurrence.toInterval()
define "No Live Vaccine Administered":
"Date Last Live Vaccine Administered" is null
define "Number Of MCV0 Doses Administered":
Count(Elements."MCV Dose 0 Dose")
define "Number Of Primary Series Doses Administered":
Count(Elements."MCV Primary Series Dose")
define "Measles Routine Immunization Schedule Complete":
"Number Of Primary Series Doses Administered" >= 2
define "Measles Routine Immunization Schedule Incomplete":
not "Measles Routine Immunization Schedule Complete"
define "Number Of Supplementary Doses Administered":
Count(Elements."MCV Supplementary Dose")
define "Draft Medication Request ID for MCV dose":
Elements."Most Recent MCV Immunization Proposal".id
Content not shown - (
application/elm+xml
, size = 17Kb )
Content not shown - (
application/elm+json
, size = 28Kb )