-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
180 changed files
with
1,607 additions
and
21,189 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,22 @@ | ||
import { DataDrivenTypes } from "shared/types"; | ||
import { getCatQualLabels } from "../rateLabelText"; | ||
import { MeasureTemplateData } from "shared/types/MeasureTemplate"; | ||
|
||
export const { categories, qualifiers } = getCatQualLabels("AAB-AD"); | ||
|
||
export const data: DataDrivenTypes.PerformanceMeasure = { | ||
customPrompt: | ||
"Enter a number for the numerator and the denominator. The measure is reported as an inverted rate. The formula for the Rate = (1 - (Numerator/Denominator)) x 100", | ||
questionText: [ | ||
"The percentage of episodes for beneficiaries age 18 and older with a diagnosis of acute bronchitis/bronchiolitis that did not result in an antibiotic dispensing event.", | ||
], | ||
questionListItems: [], | ||
categories, | ||
qualifiers, | ||
export const data: MeasureTemplateData = { | ||
type: "HEDIS", | ||
coreset: "adult", | ||
performanceMeasure: { | ||
customPrompt: | ||
"Enter a number for the numerator and the denominator. The measure is reported as an inverted rate. The formula for the Rate = (1 - (Numerator/Denominator)) x 100", | ||
questionText: [ | ||
"The percentage of episodes for beneficiaries age 18 and older with a diagnosis of acute bronchitis/bronchiolitis that did not result in an antibiotic dispensing event.", | ||
], | ||
questionListItems: [], | ||
categories, | ||
qualifiers, | ||
}, | ||
custom: { | ||
rateCalc: AABRateCalculation, | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.