This page is part of the Quality Measure STU2 for FHIR R4 Implementation Guide (v0.1.0: STU 1 Ballot 1) based on FHIR R3. The current version which supercedes this version is 3.0.0. For a full list of available versions, see the Directory of published versions
A CQL artifact is referred to as a library. Any CQL library referenced by a Measure must contain a library declaration line as the first line of the library.
Conformance Requirement 1 (Library Declaration):
The library declaration line SHALL contain a version number.
The library version number SHALL follow the convention :
<major>.<minor>.<patch>
This IG recommends an approach to versioning libraries used within Measures to help track and manage dependencies. The approach recommended here is based on the Apache APR Versioning Scheme [^11].
Because CQL libraries can contain both public and private components, there are three main types of changes that can be made to a library. First, a library can be changed in a way that would alter the public use of its components. Second, a library can be changed by adding new components or functionality but without changing existing components. And third, a library can be changed in a way that does not impact the public use of its components at all, but only corrects or improves the originally intended functionality. By exposing version numbers that identify all three types of changes, libraries can be versioned in a way that makes clear when a change will impact usage, versus when a change can potentially be safely incorporated as an update. The first type of change will be referred to as a “major” change, and will require incrementing of the “major version number”. The second type of change will be referred to as a “minor” change, and will only require incrementing of the “minor version number”. And finally, the third type of change will be referred to as a “patch”, and will only require incrementing the “patch version number”. Version numbers for CQL libraries can then be represented as:
<major>.<minor>.<patch>
For example:
library EXM146 version '1.0.0'
This would indicate the first major version of the EXM146 library. A minor change could be released by incrementing the minor version:
library EXM146 version '1.1.0'
And a major change could be released by incrementing the major version, and resetting the minor version: Minor changes are expected to retain backwards-compatibility, but may introduce new features and functionality, while patch changes are expected to retain forward and backwards-compatibility, and may only be used to fix issues.
library EXM146 version '4.0.0'
Snippet 1: Library line from EXM146_FHIR-4.0.0.cql, the fourth major version.
CQL allows libraries to re-use logic already defined in other libraries. This is accomplished by utilizing the include line as in Snippet 2.
includes Common_FHIR version '2.0.0' called Common
Snippet 2: Nested library within EXM146_FHIR-4.0.0.cql
The set of all CQL libraries used to define a Measure must adhere to Conformance Requirement 2.
Conformance Requirement 2 (Nested Libraries):
CQL libraries SHALL be structured such that all components of the
population criteria only explicitly reference a single library.
Because of this conformance statement, the primary library for a measure can always be determined by looking at the library referenced by the initial population criteria for the measure.
CQL can be used with any data model. In the context of a Measure, any referenced CQL library must identify the same data model.
Conformance Requirement 3 (CQL Data Model):
All CQL expressions used directly or indirectly within a measure SHALL reference a single data model
Data Model declarations SHALL include a version declaration.
For example:
using FHIR version '3.0.0'
Snippet 3: Data Model line from EXM146_FHIR-4.0.0.cql
Conformance Requirement 4 describes how to specify a code system within a CQL library.
Conformance Requirement 4 (Code System Specification):
Within CQL, the identifier of any code system reference SHALL be specified using a URI for the code system.
The URI SHALL be the canonical URL for the code system
The URI MAY include a version, consistent with the URI specification for FHIR and the code system
For example:
codesystem "SNOMEDCT:2017-09": 'http://snomed.info/sct/731000124108'
version 'http://snomed.info/sct/731000124108/version/201709'
Snippet 4: codesystem definition line from Terminology_FHIR.cql.
The canonical URL for a code system is a globally unique, stable, version-independent identifier for the code system. The base FHIR specification defines canonical URLs for most common code systems here.
The local identifier for the codesystem (“SNOMED-CT” in this case) should include the friendly name of the code system and optionally, an indication of the version, separated with a colon.
Version information for code systems is not required to be included in eCQMs; terminology versioning information may be specified externally. However, if versioning information is included, it must be done in accordance with the terminology usage specified by FHIR.
Conformance Requirement 5 describes how to specify a valueset within a CQL library.
Conformance Requirement 5 (Value Set Specification):
Within CQL, the identifier of any value set reference SHALL be specified using a URI for the value set.
The URI SHALL be the canonical URL for the value set
The URI MAY include a version, consistent with versioned canonical URL references in FHIR
For example:
valueset "Acute Pharyngitis": 'valueset "Acute Pharyngitis": 'https://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.464.1003.102.12.1011'
Snippet 5: Valueset reference from EXM146_FHIR-4.0.0.cql
The canonical URL for a value set is typically defined by the value set author, though it may be provided by the publisher as well. For example, value sets defined in the Value Set Authority Center and exposed via the VSAC FHIR interface have a base URL of https://cts.nlm.nih.gov/fhir/
. This base is then used to construct the canonical URL for the value set (in the same way as any FHIR URL) using the resource type (ValueSet
in this case) and the id (the value set OID in this case).
The local identifier for the value set within CQL should be the same as the name of the value set in the Value Set Authority Center (VSAC) [^9]. However, because the name of the value set is not guaranteed to be unique, it is possible to reference multiple value sets with the same name, but different identifiers. When this happens in a CQL library, the local identifier should be the name of the value set with a qualifying suffix to preserve the value set name as a human-readable artifact, but still allow unique reference within the CQL library.
For example:
valueset "Acute Pharyngitis (1)": 'https://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.464.1003.102.12.1011.1'
valueset "Acute Pharyngitis (2)": 'https://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.464.1003.102.12.1011.2'
Version information for value sets is not required to be included in eCQMs; terminology versioning information may be specified externally. However, if versioning information is included, it must be done in accordance with the terminology usage specified by FHIR. Note that because the VSAC supports different approaches to retrieving the expansion of a valueset through its Sharing Value Sets (SVS) API [^10]. For the purposes of this guidance, two approaches are described: 1) by version, and 2) by profile.
Conformance Requirement 6 describes how to retrieve an expansion of a value set by version.
Conformance Requirement 6 (Value Set Specification By Version):
When retrieving the expansion of a value set by version, append the version
indicator to the canonical URL of the value set, separated by a pipe (`|`)
For example: As with code systems, the version namespace is used to indicate that the identifier is a version.
valueset "Encounter Inpatient SNOMEDCT Value Set":
'https://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.666.7.307|20160929'
Snippet 6: valueset definition from Terminology_FHIR.cql.
When retrieving expansions by profile, the version identifier attribute conforms to Conformance Requirement 7.
Conformance Requirement 7 (Value Set Version Specification By Profile):
When retrieving the expansion of a value set by profile, append the profile
indicator to the canonical URL of the value set, separated by a pipe (`|`)
For example:
valueset "Face-to-Face Interaction":
'https://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.464.1004.101.12.1048|MU2%20Update@202016-04-01'
The representation of valueset declarations in a Library is discussed in the Measure Conformance Chapter of this IG.
When direct reference codes are represented within CQL, the logical identifier is not recommended to be a URI. Instead, the logical identifier is the code from the code system.
Conformance Requirement 8 (Direct Referenced Codes):
When direct reference codes are represented within CQL, the logical identifier:
SHALL NOT be a URI.
SHALL be a code from the code system.
code "Venous foot pump, device (physical object)": '442023007' from "SNOMED-CT"
Snippet 7: code definition from Terminology_FHIR.cql.
Note that for direct reference code usage, the local identifier (in Snippet 7 the local identifier is “Venous foot pump, device (physical object)”) should be the same as the description of the code within the terminology in order to avoid conflicting with any usage or license agreements with the referenced terminologies, but can be different to allow for potential naming conflicts, as well as simplification of longer names when appropriate.
When direct reference codes are used within eCQMs, they will be represented in the narrative (Human-readable) as:
"Assessment, Performed: Assessment of breastfeeding"
using "Assessment of breastfeeding SNOMED-CT Code (709261005)"
The representation of code declarations in a Library is discussed in Measure Conformance Chapter of this IG.
In addition to codes, CQL supports a concept construct, which is defined as a set of codes that are all semantically equivalent. Concepts are not currently used within measure development and as such, concepts are not recommended for use and should be avoided in favor of other terminological constructs.
Conformance Requirement 9 (Concepts):
The CQL concept construct SHALL NOT be used.
A “library-level identifier” is any named expression, function, parameter, code system, value set, concept, or code defined in the CQL. The library name referenced in the library-line, the data model, and any referenced external library should not be considered “library-level identifiers”. Library-level identifiers ought to be given a descriptive meaningful name (avoid abbreviations) and conform to Conformance Requirement 10.
Conformance Requirement 10 (Library-level Identifiers):
Library-level identifiers referenced in the CQL:
SHOULD Use quoted identifiers
SHOULD Use Title Case
MAY Include spaces
For example:
define function
"Includes Or Starts During"(Diagnosis "Diagnosis", Encounter "Encounter, Performed"):
Diagnosis.prevalencePeriod includes Encounter.relevantPeriod
or Diagnosis.prevalencePeriod starts during Encounter.relevantPeriod
Snippet 8: Function definition from Common_FHIR-2.0.0.cql
Data types referenced in CQL libraries to be included in a Measure must conform to Conformance Requirement 11.
Conformance Requirement 11 (Data Type Names):
Data type names referenced in CQL SHALL:
Use quoted identifiers
Use PascalCase plus appropriate spacing
Two commonly used patterns for negation in quality measurement are:
For the purposes of quality measurement, when looking for documentation that a particular event did not occur, it must be documented with a reason in order to meet the intent. If a reason is not part of the intent, then the absence of evidence pattern should be used, rather than documentation of an event not occurring.
To address the reason an action did not occur (negation rationale), the eCQM must define the event it expects to occur using appropriate terminology to identify the kind of event (using a value set or direct reference code), and then use additional criteria to indicate that the event did not occur, as well as identifying a reason.
The following examples differentiate methods to indicate (a) presence of evidence of an action, (b) absence of evidence of an action, and (c) negation rationale for not performing an action. In each case, the “action” is an administration of medication included within a value set for “Antithrombotic Therapy”.
Evidence that “Antithrombotic Therapy” (defined by a medication-specific value set) was administered:
define "Antithrombotic Administered":
["MedicationAdministration": "Antithrombotic Therapy"] AntithromboticTherapy
where AntithromboticTherapy.status = 'completed'
and AntithromboticTherapy.category = "Inpatient Setting"
No evidence that “Antithrombotic Therapy” medication was administered:
define "No Antithrombotic Therapy":
not exists (
["MedicationAdministration": "Antithrombotic Therapy"] AntithromboticTherapy
where AntithromboticTherapy.status = 'completed'
and AntithromboticTherapy.category = "Inpatient Setting"
)
Evidence that “Antithrombotic Therapy” medication administration did not occur for an acceptable medical reason as defined by a value set referenced by the eCQM (i.e., negation rationale):
define "Antithrombotic Not Administered":
["MedicationAdministration": "Antithrombotic Therapy"] NotAdministered
where NotAdministered.notGiven is true
and NotAdministered.reasonNotGiven in "Medical Reason"
In this example for negation rationale, the logic looks for a member of the value set “Medical Reason” as the rationale for not administering the medication. However, underlying systems might not represent the negated action with a code from the “Antithrombotic Therapy” value set. When justifying the reason for not administering a class of medications, clinicians do not generally specify one of the medications in the class, they most often indicate avoidance of the entire class. In these cases, the value set may be used as a placeholder to indicate the medication class was not administered. Implementations processing data reported in this way should take into account that the reported data may not be returned with a single code, but rather a value set identifier, and should consider data with the appropriate value set identifier as satisfying the criteria for value set membership.
Similarly, “Procedure, Not Performed”: “Cardiac Surgery” should not require specification of which cardiac surgery in a value set was not performed, but only reference any member of the class of procedures defined by the value set. The same process works for any application of negation rationale.
All attributes referenced in the CQL follow Conformance Requirement 13.
Conformance Requirement 13 (Attribute Names):
QDM attributes referenced in the CQL:
SHALL NOT Use quoted identifiers
SHALL Use camelCase§
Examples of attributes conforming to Conformance Requirement 13 is given below. For a full list of valid of attributes, refer to an appropriate data model specification such as QI-Core.
period
authoredOn
result
Aliases are used in CQL as local variable names to refer to sections of code. When defining a function, argument names are used to create scoped variables that refer to the function inputs. Both aliases and argument names conform to Conformance Requirement 14.
Conformance Requirement 14 (Aliases and Argument Names):
Aliases and argument names referenced in the CQL :
SHALL NOT Use quoted identifiers
SHALL Use PascalCase
SHOULD Use descriptive names (no abbreviations)
For example:
define "Encounters During Measurement Period":
"Valid Encounters" QualifyingEncounter
where QualifyingEncounter.period during "Measurement Period"
define function "ED Stay Time"(Encounter "Encounter, Performed"):
duration in minutes of Encounter.period
Tooling exists to support translation of CQL to ELM for distribution in XML or JSON formats. As described in Volume I, these distributions are included with eCQMs to facilitate implementation. The existing translator tooling applies to both measure and decision support development, and has several options available to make use of different data models in different environments. For measure development with FHIR, the following options are recommended:
Option | Description | Recommendation |
---|---|---|
EnableAnnotations | This instructs the translator to include the source CQL as an annotation within the ELM. | This option should be used to ensure that the distributed ELM could be linked back to the source CQL. |
EnableLocators | This instructs the translator to include line number and character information for each ELM node. | This option should be used to ensure that distributed ELM could be tied directly to the input source CQL. |
DisableListDemotion | This instructs the translator to disallow demotion of list-valued expressions to singletons. The list demotion feature of CQL is used to enable functionality related to use with FHIRPath. | This option should be used with Measures to ensure list demotion does not occur unexpectedly. |
DisableListPromotion | This instructs the translator to disallow promotion of singletons to list-valued expressions. The list promotion feature of CQL is used to enable functionality related to use with FHIRPath. | This option should be used with Measures to ensure list promotion does not occur unexpectedly. |
DisableMethodInvocation | This instructs the translator to disallow method-style invocation. The method-style invocation feature of CQL is used to enable functionality related to use with FHIRPath. | This option should be used with Measures to ensure method-style invocation cannot be used within eCQMs. |
EnableDateRangeOptimization | This instructs the translator to optimize date range filters by moving them inside retrieve expressions. | This feature may be used with Measures. |
EnableResultTypes | This instructs the translator to include inferred result types in the output ELM. | This feature may be used with Measures. |
EnableDetailedErrors | This instructs the translator to include detailed error information. By default, the translator only reports root-cause errors. | This feature should not be used with Measures. |
DisableListTraversal | This instructs the translator to disallow traversal of list-valued expressions. With Measures, disabling this feature would prevent a useful capability. | This feature should not be used with Measures. |