This page is part of the Quality Measure STU2 for FHIR R4 Implementation Guide (v2.0.0: STU 2) based on FHIR R4. The current version which supercedes this version is 3.0.0. For a full list of available versions, see the Directory of published versions
Library-EXM55
Formats: XML, JSON, Turtle
Id: |
EXM55 |
Url: |
http://hl7.org/fhir/us/cqfmeasures/Library/EXM55 |
Version: |
5.0.0 |
Identifier: |
value: EXM55
|
Name: |
EXM55 |
Title: |
Example Continuous Variable Measure Library |
Status: |
active |
Experimental: |
true |
Type: |
system: http://terminology.hl7.org/CodeSystem/library-type
code: logic-library
|
Date: |
2019-09-03 |
Publisher: |
Health Level 7 International - Clinical Quality Information Work Group |
Description: |
This library is used as an example in the FHIR Quality Measure Implementation Guide |
Use Context: |
|
Jurisdiction: |
US |
Approval Date: |
2019-08-03 |
Last Review Date: |
2019-08-03 |
Related Artifacts: |
Type | Resource |
depends-on | http://hl7.org/fhir/Library/FHIR-ModelInfo|4.0.1 |
depends-on | http://hl7.org/fhir/Library/FHIRHelpers|4.0.1 |
depends-on | http://terminology.hl7.org/CodeSystem/diagnosis-role |
depends-on | http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.117.1.7.1.292 |
depends-on | http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.117.1.7.1.299 |
depends-on | http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1111.126 |
|
Parameters: |
Name | Type | Min | Max | In/Out |
Measurement Period | Period | 0 | 1 | in |
Patient | Patient | 0 | 1 | out |
Inpatient Encounter | Encounter | 0 | * | out |
Initial Population | Encounter | 0 | * | out |
Measure Population | Encounter | 0 | * | out |
Measure Population Exclusion | Encounter | 0 | * | out |
Stratification 1 | Encounter | 0 | * | out |
Stratification 2 | Encounter | 0 | * | out |
Stratification 3 | Encounter | 0 | * | out |
|
Data Requirements: |
Type | Profile | MS | Code Filter |
Encounter |
http://hl7.org/fhir/StructureDefinition/Encounter |
|
|
Encounter |
http://hl7.org/fhir/StructureDefinition/Encounter |
|
code filter:
path: type
value set: http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.117.1.7.1.292
|
Encounter |
http://hl7.org/fhir/StructureDefinition/Encounter |
|
code filter:
path: type
value set: http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.117.1.7.1.292
|
Condition |
http://hl7.org/fhir/StructureDefinition/Condition |
|
code filter:
path: id
|
Encounter |
http://hl7.org/fhir/StructureDefinition/Encounter |
|
code filter:
path: type
value set: http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.117.1.7.1.292
|
|
Content: text/cql |
library EXM55 version '5.0.0'
/*
This example is a work in progress and should not be considered a final specification
or recommendation for guidance. This example will help guide and direct the process
of finding conventions and usage patterns that meet the needs of the various stakeholders
in the measure development community.
*/
using FHIR version '4.0.1'
include FHIRHelpers version '4.0.1' called FHIRHelpers
codesystem "Diagnosis Role": 'http://terminology.hl7.org/CodeSystem/diagnosis-role'
valueset "Emergency Department Visit" : 'http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.117.1.7.1.292'
valueset "Psychiatric/Mental Health Patient" : 'http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.117.1.7.1.299'
valueset "Hospital Settings" : 'http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1111.126'
code "Billing": 'billing' from "Diagnosis Role" display 'Billing'
parameter "Measurement Period" Interval<DateTime>
context Patient
define "Initial Population" :
"Inpatient Encounter" Encounter
with ["Encounter" : "Emergency Department Visit"] ED
such that ED.status = 'finished'
and ED.period ends 1 hour or less before start of Encounter.period
define "Measure Population" :
"Initial Population"
define "Inpatient Encounter" :
["Encounter"] Encounter
where LengthInDays(Encounter.period) <= 120
and Encounter.period ends during "Measurement Period"
define "Measure Population Exclusion" :
"Inpatient Encounter" Encounter
with ["Encounter" : "Emergency Department Visit"] ED
such that ED.period ends 1 hour or less before start of Encounter.period
and ED.status = 'finished'
and ED.hospitalization.admitSource in "Hospital Settings"
define function "PrincipalDiagnosis"(Encounter Encounter):
(singleton from (Encounter.diagnosis D where D.use ~ ToConcept("Billing") and D.rank.value = 1)) PD
return singleton from ([Condition: id in "GetId"(PD.condition.reference)])
define function "LengthInDays"(Value Interval<DateTime>):
difference in days between start of Value and end of Value
define function "GetId"(uri String):
Last(Split(uri, '/'))
define "Stratification 1" :
"Inpatient Encounter" Encounter
where not (PrincipalDiagnosis(Encounter).code in "Psychiatric/Mental Health Patient")
define "Stratification 2" :
"Inpatient Encounter" Encounter
where PrincipalDiagnosis(Encounter).code in "Psychiatric/Mental Health Patient"
define "Stratification 3" :
"Inpatient Encounter" Encounter
where PrincipalDiagnosis(Encounter) is null
//Measure Observation
define function "Related ED Visit" (Encounter "Encounter" ) :
Last(["Encounter" : "Emergency Department Visit"] ED
where ED.status = 'finished'
and ED.period ends 1 hour or less before start of Encounter.period
sort by start of period )
define function "Measure Observation" (Encounter "Encounter" ) :
duration in minutes of "Related ED Visit"(Encounter).period
|
Content: application/elm+xml |
Encoded data (34728 characters)
|
Content: application/elm+json |
Encoded data (63344 characters)
|