This page is part of the Using CQL with FHIR Implementation Guide (v1.0.0-ballot: STU1 Ballot 1) based on FHIR (HL7® FHIR® Standard) R4. . For a full list of available versions, see the Directory of published versions
This topic specifies conformance requirements and guidance for the use of CQL with FHIR, whether that be as in-line expressions in expression-valued elements, or in CQL libraries contained in FHIR Library resources.
Declarations in CQL are packaged in containers called libraries which provide a unit for the definition, distribution, and versioning of CQL logic. The following conformance requirements and guidance apply When libraries of CQL are used with FHIR knowledge artifacts.
Conformance Requirement 2.1 (Library Declaration):
For example:
library EXM146
This declaration specifies the name of the library as EXM146
. See the discussion on Library Resources for more information on library naming conventions.
This IG recommends Semantic Versioning be used to version libraries used within knowledge artifacts to help track and manage dependencies.
Conformance Requirement 2.2 (Library Versioning):
There are three main types of changes that can be made to a library:
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 '2.0.0'
Snippet 2-1: Library line from EXM146.cql, the second major version.
Note that when CQL libraries are included as part of larger groupings of artifacts (such as quality measures or computable guidelines), the version of the library is specified along with all the other artifacts in the larger group. For more guidance on versioning these artifacts as a group, refer to the Versioning topic in the CRMI implementation guide.
CQL allows libraries to re-use logic already defined in other libraries. This is accomplished by utilizing the include declaration as in Snippet 2-2.
include Common version '2.0.0' called Common
Snippet 2-2: Nested library within EXM146.cql
The set of all CQL libraries used as part of a knowledge artifact must adhere to Conformance Requirement 2.3.
Conformance Requirement 2.3 (Nested Libraries):
name
of the library (i.e. library-name.expression-identifier
)called
clause for all included librariescalled
-alias for an included library SHOULD be consistent for usages across librariesThe recommendation that CQL libraries be structured such that all references to expressions from a FHIR artifact is a simplification to ensure that expression references from FHIR artifacts don’t require qualified expressions (as they would if multiple libraries were referenced). However, there are valid use cases for allowing multiple libraries to be referenced, such as modular questionnaires, and dependent library references. However, when an artifact
CQL allows libraries to define a namespace that can be used to organize libraries across different groups of users.
Within a namespace, library names are required to be unique. Across namespaces, the same library name may be reused.
For example, OrganizationA and OrganizationB can both define a library named Common
, so long as they use different
namespaces. For example, consider the following library declaration:
library CMS.Common version '2.0.0'
This example declares a library named Common in the CMS namespace. Per the CQL specification, the namespace for a
library is included in the ELM in the Library.identifier
element, along with a URI that provides a globally unique, stable identifier for the namespace.
For example, the URI for the CMS namespace might be https://ecqi.healthit.gov/ecqm/measures
.
Note that this is a URI that may or may not correspond to a reachable web address (a URL). The important aspect is not the addressability, but the uniqueness, ensuring that library name collisions cannot occur.
Conformance Requirement 2.4 (Library Namespaces):
In addition, because the namespace of a library functions as part of the globally unique identifier for the library, changing the namespace of the library results in a different artifact.
CQL can be used with any data model(s). To be used with FHIR, CQL requires model information. To facilitate use with any FHIR content, a general-purpose FHIR information model is included in the Common implementation guide. However, CQL may also be used with implementation-guide specific model information (i.e. structures based on the profile definitions in an IG).
Conformance Requirement 2.5 (CQL Data Model):
For example:
using FHIR version '4.0.1'
Snippet 2-3: Data Model line from EXM146.cql
Conformance Requirement 2.6 describes how to specify a code system within a CQL library.
Conformance Requirement 2.6 (Code System Specification):
For example:
codesystem "SNOMED CT:2017-09": 'http://snomed.info/sct'
version 'http://snomed.info/sct/731000124108/version/201709'
Snippet 2-4: codesystem definition line from Terminology.cql.
The canonical URL for a code system is a globally unique, stable, version-independent identifier for the code system. The HL7 Terminology site (THO) defines canonical URLs for most common code systems.
The local identifier for the codesystem (“SNOMED CT:2017-09” 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 knowledge artifacts; 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.
If no version is specified, then the default behavior for a FHIR terminology server is to use the most recent code system version available on the server.
Conformance Requirement 2.7 describes how to specify a valueset within a CQL library.
Conformance Requirement 2.7 (Value Set Specification):
For example:
valueset "Absent or Unknown Allergies - IPS": 'http://hl7.org/fhir/uv/ips/ValueSet/absent-or-unknown-allergies-uv-ips'
Snippet 2-5: Valueset reference from EXM146.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 International Patient Summary have a base URL of http://hl7.org/fhir/uv/ips/
.
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 a unique identifier for the value set within that url (typically the same as the value set id in
the implementation guide). Note that the canonical URL is a globally unique, stable, version-independent identifier for the
value set. See Canonical URLs in the base FHIR specification for more information.
The local identifier for the value set within CQL SHOULD be the same as the title
of the value set. However, because the title of the value set is not
necessarily unique, it is possible to reference multiple value sets with the same title, but different identifiers.
When this happens in a CQL library, the local identifier SHOULD be the title of the value set with a qualifying suffix to
preserve the value set title as a human-readable reference, but still allow unique reference within the CQL library.
For example:
valueset "Acute Pharyngitis (1)": 'http://example.org/fhir/ValueSet/acute-pharyngitis-snomed'
valueset "Acute Pharyngitis (2)": 'http://example.org/fhir/ValueSet/acute-pharyngitis-icd'
Note carefully that although this URL may be resolvable for some terminology implementations, this is not necessarily the
case. This use of a canonical URL can be resolved as a search by the url
element:
GET fhir/ValueSet?url=http://example.org/fhir/ValueSet/acute-pharyngitis-snomed
Version information for value sets is not required to be included in knowledge artifacts; 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 2.8 describes how to retrieve an expansion of a value set by version.
Conformance Requirement 2.8 (Value Set Specification By Version):
|
)For example:
valueset "Encounter Inpatient SNOMEDCT Value Set":
'http://example.org/fhir/ValueSet/encounter-inpatient|20160929'
Snippet 2-6: valueset definition from Terminology.cql.
This is a version specific value set reference, and can be resolved as a search by the url
and version
elements:
GET fhir/ValueSet?url=http://example.org/fhir/ValueSet/encounter-inpatient&version=20160929
It is important to maintain the distinction between the definition of a value set and the expansion of a value set. The searches described in previous sections all retrieve the definition of a value set. For the purposes of local evaluation, implementations may wish to retrieve the expansion of a value set, or the set of all codes that are defined to be in the value set by the definition.
Because the definition of a value set can, and often does, include codes from a code system based on properties of that code system, the expansion of a value set is sensitive to the versions of the code systems used in the definition. This means that in general, the expansion of a value set is version-specific, and care must be taken to ensure that version considerations are taken into account when using the results of an expansion.
Conformance Requirement 2.9 (Value Set Expansion):
in(ValueSet)
), as opposed to requiring computation on the lists of codes in a value set. Please reference http://cql.hl7.org/02-authorsguide.html#terminology-operators for more information.For example, rather than combining multiple value sets using a union
, separate membership tests in each value set SHOULD be used. For more information, see the Value Set Expansion topic in the base FHIR specification.
When value sets are used within knowledge artifacts, they will be represented in the narrative (Human-readable) as:
"Encounter Inpatient" using "Encounter Inpatient SNOMEDCT Value Set" (http://example.org/fhir/ValueSet/encounter-inpatient, version 20160929)
In other words, the local identifier for the value set, followed by the value set information from the value set declaration, including version if specified.
Although CQL allows the use of strings as input to membership testing in value sets, this capability SHALL NOT be used with FHIR-based models as it can lead to incorrect matching if the code system is not considered.
Conformance Requirement 2.10 (String-based Membership Testing):
For example, given a valueset named "Administrative Gender"
, the following CQL expression would be non-conformant:
'female' in "Administrative Gender"
When direct-reference codes are represented within CQL, the logical identifier SHALL NOT be a URI. Instead, the logical identifier SHOULD be the code from the code system.
Conformance Requirement 2.11 (Direct Referenced Codes):
code "Venous foot pump, device (physical object)": '442023007' from "SNOMED CT"
Snippet 2-7: code definition from Terminology.cql.
Note that for direct-reference code usage, the local identifier (in Snippet 2-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.
CQL supports both version-specific and version-independent specification of and comparison to direct-reference codes. The best practice is for artifact authors to use version-independent direct-reference codes and comparisons unless there is a specific reason not to (such as the code is retired in the current version). Even in the case that version-specific direct-reference codes are required, best practice is still to use the equivalent (~) operator in CQL for the comparison (again, unless there is a specific reason to do version-specific comparison)
When direct-reference codes are used within knowledge artifacts, they will be represented in the narrative (Human-readable) as:
"Venous foot pump, device (physical object)" using "Venous foot pump, device (physical object) SNOMED CT Code (442023007)"
In other words, the library identifier followed by the code and code system information from the code declaration.
Although the Unified Code for Units of Measure (UCUM) is a code system, it requires specific handling for two reasons. First, it is a grammar-based code system with an effectively infinite number of codes, so membership tests must be performed computationally, rather than just by checking for existence of a code in a list; and second, because UCUM codes are so commonly used as part of quantity values, healthcare contexts typically provide direct mechanisms for using UCUM codes.
For these reasons, within quality artifacts in general, and quality measures specifically, UCUM codes SHOULD make use of the direct mechanisms wherever possible. In CQL logic, this means using the Quantity literal, rather than declaring UCUM codes as direct-reference codes as is recommended when using codes from other code systems. For example, when accessing a Body Mass Index (BMI) observation in CQL:
define "BMI in Measurement Period":
[Observation: "BMI"] BMI
where BMI.status in {'final', 'amended', 'corrected'}
and BMI.effective during "Measurement Period"
and BMI.value is not null
and BMI.value.code = 'kg/m2'
Notice the use of the UCUM code directly, as opposed to declaring a CQL code for the unit:
codesystem UCUM: 'http://unitsofmeasure.org'
code "kg/m2": 'kg/m2' from UCUM
define "BMI in Measurement Period":
[Observation: "BMI"] BMI
where BMI.status in {'final', 'amended', 'corrected'}
and BMI.effective during "Measurement Period"
and BMI.value is not null
and BMI.value.code = "kg/m2"
In addition to codes, CQL supports a concept construct, which is defined as a set of codes that are all about the same concept, (e.g. the same concept represented in different code systems, or the same concept from the same code system represented at different levels of detail), but CQL itself will make no attempt to ensure that is the case. Concepts should never be used as a surrogate for proper valueset definition. In other words, the Concept declaration should not be used to define sets of codes for membership testing.
Conformance Requirement 2.12 (Concepts):
As an example of an anti-pattern for Concept usage, consider the following:
codesystem "Condition Clinical Status Codes": 'http://terminology.hl7.org/CodeSystem/condition-clinical'
code "Active": 'active' from "Condition Clinical Status Codes" display 'Active'
code "Recurrence": 'recurrence' from "Condition Clinical Status Codes" display 'Recurrence'
code "Relapse": 'relapse' from "Condition Clinical Status Codes" display 'Relapse'
concept "Active Condition Statuses": { "Active", "Recurrence", "Relapse" } display 'Active Condition Statuses'
This usage of concept includes multiple concepts with different meanings from the same code system. A value set SHOULD be used for this purpose as it provides more flexibility and maintainability for this use case.
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 2.13.
Conformance Requirement 2.13 (Library-level Identifiers):
For example:
define function
"Includes Or Starts During"(Condition "Condition", Encounter "Encounter"):
Interval[Condition.onset, Condition.abatement] includes Encounter.period
or Condition.onset during Encounter.period
Snippet 2-8: Function definition from Common.cql
The "Includes Or Starts During"
is the library-level identifier in this example.
A “data type” in CQL refers to any named type used within CQL expressions. They may be primitive types, such as the system-defined “Integer” and “DateTime”, or they may be model-defined types such as “Encounter” or “Medication”. For FHIR-based knowledge artifacts using model information based on implementation guides (such as the QI-Core profiles), these will be the author-friendly identifiers for the profile. Data types referenced in CQL libraries to be included in a knowledge artifact must conform to Conformance Requirement 2.14.
Conformance Requirement 2.14 (Data Type Names):
For example:
define "Flexible Sigmoidoscopy Performed":
[Procedure: "Flexible Sigmoidoscopy"] FlexibleSigmoidoscopy
where FlexibleSigmoidoscopy.status = 'completed'
and FlexibleSigmoidoscopy.performed ends 5 years or less on or before end of "Measurement Period"
Snippet 2-9: Expression definition from EXM130.cql
The Procedure
is the name of the model data type (FHIR resource type) in this example.
Because clinical information is often incomplete, CQL provides constructs and support for representing and dealing with unknown or missing information. In FHIR, when the value of an element is not present, accessing that element will result in a null
:
Observation.interpretation
Given an instance of an Observation resource that does not have an interpretation element, the above expression will return null
. In general, null
results will propagate through operations. For example:
MedicationRequest.doNotPerform = false
If the MedicationRequest instance does not have a doNotPerform
element, this expression will return null
. When a null
result is encountered in the evaluation of a criteria (such as a where
clause), it will be interpreted as false
. For this reason, best-practice when comparing boolean-valued elements such as doNotPerform
is to use the is true | false
predicate test:
MedicationRequest MR
where MR.doNotPerform is not true
This pattern ensures that whether the instance does not have a doNotPerform element, or the doNotPerform element is false, the result of the expression is true, correctly accounting for the potential missing information.
Another common case encountered in FHIR is the use of an unknown
code in terminology-valued elements:
MedicationRequeest.status = 'unknown'
This is a special-case of characterizing missing information within FHIR resources. To treat this status value as a null, the following pattern can be used:
if MedicationRequest.status is null or MedicationRequest.status ~ 'unknown'
For more information about dealing with Missing Information in CQL in general, see the Missing Information topic in the CQL Author’s Guide.
Two commonly used patterns for negation in clinical logic are:
For the purposes of clinical reasoning, 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), an artifact 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 clinical logic (i.e., negation rationale):
define "Antithrombotic Not Administered":
["MedicationAdministration": "Antithrombotic Therapy"] NotAdministered
where NotAdministered.status = 'not-done'
and NotAdministered.statusReason 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 any of the anticoagulant and antiplatelet medications specified in the “Antithrombotic Therapy” value set.
To represent Antithrombotic Therapy Not Administered, implementing systems reference the canonical of the “Antithrombotic
Therapy” value set using the cqf-notDoneValueSet
extension to indicate
providers did not administer any of the medications in the “Antithrombotic Therapy” value set. By referencing the value
set URI to negate the entire value set rather than reporting a specific member code from the value set, clinicians are
not forced to arbitrarily select a specific medication from the “Antithrombotic Therapy” value set that they
did not administer in order to negate.
All attributes referenced in the CQL follow Conformance Requirement 2.15.
Conformance Requirement 2.15 (Attribute Names):
Examples of attributes conforming to Conformance Requirement 2.15 are 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 to reference items within the scope of a query. When defining a function, argument names are used to create scoped identifiers that refer to the function inputs. Both aliases and argument names conform to Conformance Requirement 2.16.
Conformance Requirement 2.16 (Aliases and Argument Names):
For example:
define "Encounters During Measurement Period":
"Valid Encounters" QualifyingEncounter
where QualifyingEncounter.period during "Measurement Period"
define function "ED Stay Time"(Encounter "Encounter"):
duration in minutes of Encounter.period
In addition to the use of CQL directly in expression-valued elements, CQL content used within knowledge artifacts can be included through the use of a Library resource. These libraries can then be referenced from FHIR resources such as PlanDefinition and Measure using the library
element (as well as the cqf-library
extension for resources that do not declare a library
element). The content of the CQL library is included using the content
element of the Library.
Conformance Requirement 2.17 (Library Resources):
Conformance Requirement 2.18 (Library Name and URL):
<CQL namespace url>/Library/<CQL library name>
<CQL library name>
<CQL library version>
<CQLLibraryName>.cql
The prohibition against underscores in CQL library names is required to ensure compliance with the canonical URL pattern (because URLs by convention should not use underscores). In addition, many publishing environments will use the canonical tail (i.e. the name of the library) as the logical id of the Library resource, which does not allow underscores per the FHIR specification.
Conformance Requirement 2.19 (FHIR Type Mapping):
CQL System Type | FHIR Type |
---|---|
System.Boolean |
FHIR.boolean |
System.Integer |
FHIR.integer |
System.Decimal |
FHIR.decimal |
System.Date |
FHIR.date |
System.DateTime |
FHIR.dateTime |
System.Long |
FHIR.integer64 |
System.Time |
FHIR.time |
System.String |
FHIR.string |
System.Quantity |
FHIR.Quantity |
System.Ratio |
FHIR.Ratio |
System.Any |
FHIR.Any |
System.Code |
FHIR.Coding |
System.Concept |
FHIR.CodeableConcept |
Interval<System.Date> |
FHIR.Period |
Interval<System.DateTime> |
FHIR.Period |
Interval<System.Quantity> |
FHIR.Range |
Conformance Requirement 2.20 (FHIR Type Mapping):
part
elements corresponding to the elements of the tuple. List types are represented with Parameters that have a cardinality of 0..*.parameter
element to identify input parameters as well as the type of all top-level expressions as output parameters.dataRequirement
element to identify any retrieves present in the CQL:Retrieve Element | DataRequirement Element |
---|---|
dataType | type |
templateId | profile |
context | subject |
codeProperty | codeFilter.path or codeFilter.searchParam |
codes (Concept) | codeFilter.code (for each Code present in the Concept) |
codes (Code) | codeFilter.code |
codes (ValueSetRef) | codeFilter.valueSet (as specified by the id of the ValueSetDef referenced by the ValueSetRef) |
dateProperty | dateFilter.path |
dateLowProperty,dateHighProperty | dateFilter.path (resolved to an interval-valued property) |
dateRange | dateFilter.path or dateFilter.searchParam |
Note that best-practice for CQL evaluation is to make use of and distribute compiled CQL (ELM). In the case that dynamic CQL construction is required, implementers should take care to sanitize inputs from any parameters used in the construction of dynamic CQL to avoid injection attacks.
Conformance Requirement 2.21 (Related Artifacts):
relatedArtifact
element to identify includes, code systems, value sets, and data models used by the CQL library:Dependency | RelatedArtifact representation |
Data Model (using declaration) | depends-on with url of the ModelInfo Library (e.g. http://hl7.org/fhir/Library/FHIR-ModelInfo|4.0.1 ) |
Library (include declaration) | depends-on with url of the Library (e.g. http://hl7.org/fhir/Library/FHIRHelpers|4.0.1 ) |
Code System | depends-on with url of the CodeSystem (e.g. http://loing.org ) |
Value Set | depends-on with url of the ValueSet (e.g. http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1116.89 ) |
The version of CQL/ELM used for content in a library SHOULD be specified using the version parameter of the text/cql and application/elm+xml, application/elm+json media types.
text/cql; version=1.5
application/elm+xml; version=1.5
application/elm+json; version=1.5
Resource narratives for Libraries and knowledge artifacts that use CQL SHOULD include the CQL version if it is specified in the MIME type as shown above.
FHIR supports various types of terminology-valued elements, including:
These types map to the following CQL primitive types, respectively:
In addition to the type of element, FHIR provides the ability to bind these elements to specific codes, in the form of a direct-reference code (fixed constraint to a specific code in a CodeSystem), or a binding to a ValueSet. These bindings can be different binding strengths
Within CQL, references to terminology code systems, value sets, codes, and concepts are directly supported, and all such usages are declared within CQL libraries, as described in the Terminology section of the CQL Author’s Guide.
When referencing terminology-valued elements within CQL, the following comparison operations are supported:
For time-valued quantities, in addition to the definite duration UCUM units, CQL defines calendar duration keywords to support calendar-based durations and arithmetic. For example, UCUM defines an annum (‘a’) as 365.25 days, whereas the year (‘year’) duration in CQL is specifically a calendar year. This difference is important, especially when performing calendar arithmetic.
For example if we take a datetime and subtract a calendar year
@2019-01-01T05:00:00 - 1 year
This would resolve to 2018-01-01T05:00:00
However, if we take the same datetime and subtract a UCUM annum
@2019-01-01T05:00:00 - 1 'a'
This would resolve to 2017-12-31T23:00:00
See the definition of the Quantity type in the CQL Author’s Guide, as well as the Date/Time Arithmetic discussion for more information.
Tooling exists to support translation of CQL to ELM for distribution in XML or JSON formats. These distributions can be included with knowledge artifacts 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 knowledge artifact 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 knowledge artifacts 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 knowledge artifacts 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 NOT be used with FHIR-based knowledge artifacts because it prevents the use of the fluent functions feature of CQL 1.5, which can be used to significantly improve readability of knowledge artifact logic, especially when accessing extensions. |
EnableDateRangeOptimization | This instructs the translator to optimize date range filters by moving them inside retrieve expressions. | This feature MAY be used with knowledge artifacts. |
EnableResultTypes | This instructs the translator to include inferred result types in the output ELM. | This feature MAY be used with knowledge artifacts. |
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 knowledge artifacts. |
DisableListTraversal | This instructs the translator to disallow traversal of list-valued expressions. With knowledge artifacts, disabling this feature would prevent a useful capability. | This feature SHOULD NOT be used with knowledge artifacts. |
SignatureLevel | This setting controls whether the signature element of a FunctionRef will be populated. |
The SignatureLevel SHOULD be Overloads or All to ensure signature information is present. |
The FHIR specification defines the cqlOptions extension to support defining the expected translator options used with a given Library, or set of Libraries. When this extension is not used, the recommended options above SHOULD be used. When this extension is present on a Library, it SHALL be used to provide options to the translator when translating CQL for that library. When this extension is present in an asset collection or implementation guide, it SHALL be used to provide options to the translator unless the options are provided directly by the library.
Conformance Requirement 2.22 (Translator Options):
The cqlOptions
extension references a contained Parameters
resource that contains a parameter for each option specified, as well as a translatorVersion
parameter that indicates the version of the translator used to produce the ELM. For example:
{
"resourceType": "Library",
"id": "FHIRCommon",
"meta": {
"profile": [ "http://hl7.org/fhir/uv/cql/StructureDefinition/cql-library" ]
},
"contained": [ {
"resourceType": "Parameters",
"id": "options",
"parameter": [ {
"name": "translatorVersion",
"valueString": "2.9.0-SNAPSHOT"
}, {
"name": "option",
"valueString": "EnableAnnotations"
}, {
"name": "option",
"valueString": "EnableLocators"
}, {
"name": "option",
"valueString": "DisableListDemotion"
}, {
"name": "option",
"valueString": "DisableListPromotion"
}, {
"name": "format",
"valueString": "XML"
}, {
"name": "format",
"valueString": "JSON"
}, {
"name": "analyzeDataRequirements",
"valueBoolean": true
}, {
"name": "collapseDataRequirements",
"valueBoolean": true
}, {
"name": "compatibilityLevel",
"valueString": "1.5"
}, {
"name": "enableCqlOnly",
"valueBoolean": false
}, {
"name": "errorLevel",
"valueString": "Info"
}, {
"name": "signatureLevel",
"valueString": "Overloads"
}, {
"name": "validateUnits",
"valueBoolean": true
}, {
"name": "verifyOnly",
"valueBoolean": false
} ]
} ],
"extension": [ {
"url": "http://hl7.org/fhir/StructureDefinition/cqf-cqlOptions",
"valueReference": {
"reference": "#options"
}
} ],
"url": "http://ecqi.healthit.gov/ecqms/Library/FHIRCommon",
"version": "4.1.000",
"name": "FHIRCommon",
...
}
Because certain translator options impact language features and functionality, translated ELM may not be suitable for use in all contexts if the options used to produce the ELM are inconsistent with the options in use in the evaluating environment. To determine suitability of ELM for use in a given environment, the following guidance SHOULD be followed:
Conformance Requirement 2.23 (ELM Suitability):
Overloads
or All
When using CQL with FHIR, FHIR StructureDefinition resources are used to create the ModelInfo that describes the types for use in CQL, according to the following rules:
primitive-type
, complex-type
(except for types based on Extension), or resource
(with no derivation or a derivation of specialization
), a ClassInfo with the same name as the structure definition is created
If this process is run against the StructureDefinitions from the base FHIR specification, it produces a complete representation of all the FHIR Resources as classes in the ModelInfo. However, because FHIR primitive types actually have elements (e.g. value
, id
, and extension
), this process produces classes in the ModelInfo for each of the FHIR primitive types, and only the value
elements of these FHIR primitives are typed with the actual CQL primitive types. This means that to access the actual values of FHIR elements for comparison against CQL primitive values, the .value
path must be used:
Patient.gender.value = 'female'
To facilitate comparison by authors, these primitives can be implicitly converted to CQL primitive types, and the FHIRHelpers library (typically generated alongside the ModelInfo) defines these implicit conversions. See the CQF Common implementation guide for a complete FHIR ModelInfo as well as FHIRHelpers library representing the FHIR specification.
Similar to CQL content, ModelInfo can be included in FHIR Library resources to facilitate distribution.
Conformance Requirement 2.24 (ModelInfo Libraries):
The process for producing ModelInfo from FHIR StructureDefinitions csn also be applied to FHIR profile definitions, allowing for ModelInfos that reflect profile definitions, using the following refinements:
In addition, to support more fine-grained control over the process of producing ModelInfo from FHIR StructureDefinitions, this implementation guide defines several ModelInfo-related extensions: