-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix $populate issue with missing responseItems for a null population context (#573) * Allow for an empty context response * add comment * fix not-applicable status for care-gaps (#574) * fix na status for care-gaps * remove duplicate identifier --------- Co-authored-by: Brenin Rhodes <brenin@alphora.com> Co-authored-by: Justin McKelvy <60718638+Capt-Mac@users.noreply.github.com>
- Loading branch information
1 parent
fc64604
commit 6533d6a
Showing
6 changed files
with
204 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
118 changes: 118 additions & 0 deletions
118
.../r4/MinimalMeasureEvaluation/resources/measure/MinimalProportionDenominatorExclusion.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
{ | ||
"id": "MinimalProportionDenominatorExclusion", | ||
"resourceType": "Measure", | ||
"url": "http://example.com/Measure/MinimalProportionDenominatorExclusion", | ||
"library": [ | ||
"http://example.com/Library/MinimalProportionBooleanBasisSingleGroup" | ||
], | ||
"scoring": { | ||
"coding": [ | ||
{ | ||
"system": "http://hl7.org/fhir/measure-scoring", | ||
"code": "proportion" | ||
} | ||
] | ||
}, | ||
"group": [ | ||
{ | ||
"population": [ | ||
{ | ||
"id": "initial-population", | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/measure-population", | ||
"code": "initial-population", | ||
"display": "Initial Population" | ||
} | ||
] | ||
}, | ||
"criteria": { | ||
"language": "text/cql-identifier", | ||
"expression": "always true" | ||
} | ||
}, | ||
{ | ||
"id": "denominator", | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/measure-population", | ||
"code": "denominator", | ||
"display": "Denominator" | ||
} | ||
] | ||
}, | ||
"criteria": { | ||
"language": "text/cql-identifier", | ||
"expression": "always false" | ||
} | ||
}, | ||
{ | ||
"id": "denominator-exclusion", | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/measure-population", | ||
"code": "denominator-exclusion", | ||
"display": "Denominator-Exclusion" | ||
} | ||
] | ||
}, | ||
"criteria": { | ||
"language": "text/cql-identifier", | ||
"expression": "always true" | ||
} | ||
}, | ||
{ | ||
"id": "denominator-exception", | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/measure-population", | ||
"code": "denominator-exception", | ||
"display": "Denominator-Exception" | ||
} | ||
] | ||
}, | ||
"criteria": { | ||
"language": "text/cql-identifier", | ||
"expression": "always false" | ||
} | ||
}, | ||
{ | ||
"id": "numerator-exclusion", | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/measure-population", | ||
"code": "numerator-exclusion", | ||
"display": "Numerator-Exclusion" | ||
} | ||
] | ||
}, | ||
"criteria": { | ||
"language": "text/cql-identifier", | ||
"expression": "always false" | ||
} | ||
}, | ||
{ | ||
"id": "numerator", | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/measure-population", | ||
"code": "numerator", | ||
"display": "Numerator" | ||
} | ||
] | ||
}, | ||
"criteria": { | ||
"language": "text/cql-identifier", | ||
"expression": "always false" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} |