-
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 not-applicable status for care-gaps (#574)
* fix na status for care-gaps * remove duplicate identifier
- Loading branch information
Showing
3 changed files
with
172 additions
and
32 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
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" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} |