Stream: cql
Topic: Non-Patient Based Populations in eCQM
Alexander Kiel (Dec 05 2019 at 17:03):
According to the Quality Measure STU1 for FHIR STU3 IG non-patient based populations are possible. That is done by returning the, in their case, encounters from the, then called InitialPolulation
expression. Normally one would have an InInitialPopulation
expression just returning true/false for inclusion of each patient.
The following paragraph in section 3.4.1 makes that clear:
In addition to the measure type, measures generally fall into two categories, patient-based, and non-patient-based (e.g. encounter-based). In general, patient-based measures count the number of patients in each population, while non-patient-based measures count the number of items (such as encounters) in each population.
My question is simply whether this is considered possible in a common case or whether this is special to the mentioned IG. I also have the question how it is specified in the Measure resource of which type the populations are. I also ask because this non-patient based populations are not mentioned in Quality Reporting.
Alexander Kiel (Dec 05 2019 at 18:29):
I have cross posted this in Implementers because not all of the important people are in #cql.
Bryn Rhodes (Dec 05 2019 at 23:20):
Hi @Alexander Kiel , this is supported by the base Measure and MeasureReport resources (it's actually the root of the reason we don't allow the Group resource to be used to specify or report populations). It's definitely not made as clear as it could be, but the measures structures are all designed to support it, and for example, this section discusses that individual members of a population may be encounters or procedures, not necessarily patients.
Bryn Rhodes (Dec 05 2019 at 23:22):
One of the tasks we are working on is to promote appropriately general guidance and implementation experience from the Quality Measure and Data Exchange for Quality Measures IGs back to the base Measure and MeasureReport resources and the Quality Reporting topic. There are several trackers related to this that are in the process of being applied for the R5 specification.
Alexander Kiel (Dec 06 2019 at 08:02):
@Bryn Rhodes Thanks for your answer. Is the Quality Measure IG currently the best source for additional documentation regarding Quality Reporting?
If the population I use in a Measure would be encounters, should I set the subject of the Measure to Encounter or is that still Patient, because I still use the Patient context in CQL? In the Measure documentation subject is linked to the CQL context. If on the other hand subject should be still Patient, how can I specify, that the actual populations are encounters? To extends this: if the subject is still Patient, would it be possible to have different population types in different groups of the same Measure?
Bryn Rhodes (Dec 06 2019 at 16:34):
Yes, the Quality Measure IG contains the most current guidance regarding authoring quality measures, and the Data Exchange for Quality Measures contains the most current guidance for reporting quality measures.
Bryn Rhodes (Dec 06 2019 at 16:37):
Subject is still patient though on both cases because the context in CQL gives the evaluation context for the population criteria. The result type of the criteria expression would be boolean for patient based measures, and would be a list of the relevat resource type for non-patient-based measures.
Bryn Rhodes (Dec 06 2019 at 16:37):
The quality measure if defines a populationBasis extension that allows you to specify what that type is.
Bryn Rhodes (Dec 06 2019 at 16:38):
*IG
Bryn Rhodes (Dec 06 2019 at 16:51):
http://hl7.org/fhir/us/cqfmeasures/StructureDefinition-cqfm-populationBasis.html
Alexander Kiel (Dec 06 2019 at 17:12):
@Bryn Rhodes Ok thanks. I have to evaluate this further but I think using non-patient based populations would negate my need for the special Specimen context, you might remember. I can just use the Patient context and count the Specimens of interest.
Last updated: Apr 12 2022 at 19:14 UTC