Stream: cql
Topic: Reporting period requirements
Sean McIlvenna (Jun 15 2021 at 16:08):
Is there a way to indicate that the reportStart
and reportEnd
should be a 24 hour duration, vs a 36 hour duration, vs. a week, etc.?
Bryn Rhodes (Jun 16 2021 at 20:57):
Hi @Sean McIlvenna , yes, the QM IG supports specifying the effectivePeriod for a measure using an anchor and duration:
<effectivePeriod>
<extension
url="http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/cqfm-effectivePeriodAnchor">
<valueDateTime value="2018-01-01"/>
</extension>
<extension
url="http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/cqfm-effectivePeriodDuration">
<valueDuration>
<value value="1"/>
<system value="http://unitsofmeasure.org"/>
<code value="a"/>
</valueDuration>
</extension>
<start value="2018-01-01"/>
<end value="2018-12-31"/>
</effectivePeriod>
Last updated: Apr 12 2022 at 19:14 UTC