Common CQL Artifacts for FHIR (US-Based)
1.0.0 - Informative 1 United States of America flag

Common CQL Artifacts for FHIR (US-Based), published by HL7 International / Clinical Decision Support. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/us-cql-ig/ and changes regularly. See the Directory of published versions

Observation Patterns

Page standards status: Informative

The FHIR Observation resource supports capturing a variety of information in a medical record, including simple name/value pair assertions, as well as multi-component observations, and logical groupings of observations. US Core defines several observation profiles to support a variety of use cases, including:

  • Vital Signs
  • Clinical Results
  • Laboratory Results
  • Screening Asessments
  • Simple Observations
  • Other Observations

Vital Signs

Clinical Results

Laboratory Results

US Core defines US Core Laboratory Result Observation to record laboratory observations.

Observation codes will be LOINC. Result values will generally be represented in different ways, according to the type of lab result. The LOINC code itself will often describe the expected representation of possible values for a given observation or test result.

Screening Asessments

Simple Observations

Other Observations

Modifier Elements

Regardless of which profile is used, the Observation resource defines the following modifier elements:

  • status

In addition to being a modifier, this element is required with a required binding. The USCoreCommon library defines several functions for determining the status of an observation, as discussed in the Status section below.

Search Parameters

USCore defines the following mandatory search parameters:

  • patient, category
  • patient, code
  • patient, category, date

In addition, the following optional search parameters are described:

  • patient, category, status
  • patient, category, _lastUpdated
  • patient, code, date

NOTE: For discussion on how to manage search parameters with terminology, see the Terminology Considerations discussion in the Architectural Guidance topic.

NOTE: For discussion on how to manage optional search parameters, see the Performant Data Access discussion in the Architectural Guidance topic.

Cross-Version Considerations

Generally, new versions of USCore since 3.1.1 have introduced additional profiles, but have not impacted representation of existing profiles. As of 7.0.0, there are generally:

  • vital signs (including vital signs described in the base FHIR specification, as well as additional vital signs profiles)
  • clinical results
    • laboratory results
  • screening assessments
  • simple observations

Common Elements and Functions

Status

The USCoreCommon library defines functions and terminology declarations to support determining status of an observation:

  • isResulted(): returns true if the status is final, amended, or corrected
  • isFinal(): Returns true if the status is final
  • isAmended(): Returns true if the status is amended
  • isCorrected(): Returns true if the status is corrected

As well as for filtering lists of observations with a given status:

  • resulted(): returns Observations in the given list with a status is final, amended, or corrected
  • final(): Returns Observations in the given list with a status is final
  • amended(): Returns Observations in the given list with a status is amended
  • corrected(): Returns Observations in the given list with a status is corrected

Category

  • .hasCategory(Code): Returns true if the given observation has the given category
  • .isSocialHistory(): Returns true if the given observation has a category of social history
  • .isVitalSign(): Returns true if the given observation has a category of vital sign
  • .isImaging(): Returns true if the given observation has a category of imaging
  • .isLaboratory(): Returns true if the given observation has a category of laboratory
  • .isProcedure(): Returns true if the given observation has a category of procedure
  • .isSurvey(): Returns true if the given observation has a category of survey
  • .isExam(): Returns true if the given observation has a category of exam
  • .isActivity(): Returns true if the given observation has a category of activity

Interpretation

Note that the interpretation element of an observation may not be present, and may not be coded as expected. Care must be taken in the use of this element to ensure that data conforms with the expectations of the logic.

  • .positive(): Returns Observations in the given list that have an interpretation of positive
  • .negative(): Returns Observations in the given list that have an interpretation of negative

Timings

Observation Elements

In addition, the USCoreElements library defines expressions for accessing the various USCore profiles, such as:

In general, the expressions to retrieve observations for a particular profile include the .resulted() function to ensure only final, amended, or corrected observations are returned.

Examples

Three Concurrent Negative Stick Tests

This example illustrates logic for identifying three concurrent negative "stick tests":

define StickTest:
  [Observation: "Stick Test Codes"] O
    where O.status in { 'final', 'amended', 'corrected' }

define "Three Consecutive Negative Stick Tests":
  exists (
    StickTest.during(Encounter).consecutively().take(3).negative().count() = 3
  )

In addition, this expression can be parameterized with current context (for example from a trigger context) with:

StickTest.consecutivelyFrom(%context).take(3).negative().count() = 3

NOTE: Content for this page was adapted from the QICore Authoring Patterns - Laboratory Result topic.