-
EH/CAH eCQMs - Eligible Hospitals/Critical Access Hospitals
-
Resolution: Answered
-
Moderate
-
None
-
None
-
Julia Dawson
-
630-319-0192
-
The Joint Commission
-
-
CMS0871v2
-
We would like to know measure intention regarding relevantDateTime and relevantPeriod startTime. The logic only refers to relevantDateTime but should relevantPeriod startTime be used if that is available?
We have a measure intention question regarding eHH02, CMS871v2, and the “Laboratory Test, Performed” for “Glucose Lab Test Mass Per Volume”. The timing always references relevant dateTime as the laboratory test occurs at a single point in time. But if instead, a datetime came in the relevantPeriod startTime, and relevant dateTime was null, how would you expect the measure to handle this? Should this Lab test fail the timing test or should the relevantPeriod startTime be compared to the time period in the logics below?
Days With Glucose Results
"Days in Hospitalization" InpatientHospitalDays
return Tuple {
encounter: InpatientHospitalDays.encounter,
relevantPeriod: InpatientHospitalDays.relevantPeriod,
relevantDays: ( InpatientHospitalDays.relevantDays EncounterDay
return Tuple
)
}
Encounter With Elevated Blood Glucose Lab
"Encounter With Hospitalization Period" Hospitalization
with ["Laboratory Test, Performed": "Glucose Lab Test Mass Per Volume"] BloodGlucoseLab
such that BloodGlucoseLab.relevantDatetime during Hospitalization.hospitalizationPeriod
and BloodGlucoseLab.result >= 200 'mg/dL'
return Hospitalization.encounter
First Blood Glucose Within 1 Hour Prior To and 6 Hours After Encounter Start
First(["Laboratory Test, Performed": "Glucose Lab Test Mass Per Volume"] FirstBloodGlucose
with("Qualifying Encounter")InpatientEncounter
such that FirstBloodGlucose.relevantDatetime during Interval[(start of Global."HospitalizationWithObservation"(InpatientEncounter)- 1 hour),(start of Global."HospitalizationWithObservation"(InpatientEncounter)+ 6 hours)]
sort by relevantDatetime
)