You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiling with SignatureLevel All or Overloads, the following library using FHIR correctly outputs the signature elements for the FHIRHelpers call:
library TestEncounterPeriod
using FHIR version '4.0.1'
include FHIRHelpers version '4.1.0'
parameter "Measurement Period" Interval<DateTime> default Interval[@2024-01-01T00:00:00.0Z, @2025-01-01T00:00:00.0Z)
context Patient
define Encounters:
[Encounter] E
whereE.period during "Measurement Period"
However, the equivalent library using QICore does not:
library TestEncounterPeriodQICore
using QICore version '4.1.1'
include FHIRHelpers version '4.1.0'
parameter "Measurement Period" Interval<DateTime> default Interval[@2024-01-01T00:00:00.0Z, @2025-01-01T00:00:00.0Z)
context Patient
define Encounters:
[Encounter] E
whereE.period during "Measurement Period"
This appears to be because the mapping expansion output is not respecting the signature level flag.
The text was updated successfully, but these errors were encountered:
When compiling with SignatureLevel All or Overloads, the following library using FHIR correctly outputs the signature elements for the FHIRHelpers call:
However, the equivalent library using QICore does not:
This appears to be because the mapping expansion output is not respecting the signature level flag.
The text was updated successfully, but these errors were encountered: