diff --git a/src/app/components/references/data.ts b/src/app/components/references/data.ts index ff8f0e2e..5b560158 100644 --- a/src/app/components/references/data.ts +++ b/src/app/components/references/data.ts @@ -44,11 +44,11 @@ export const measurementsFields: IFields = { { name: 'denominator', value: 'integer', description: 'The total number of patients or episodes of care as described by the measure. Must be greater than or equal to zero. Can only be 0 if the numerator is 0 as well.', notes: 'writable, required' }, ], nonProportion: [ - { name: 'numerator', value: 'float', description: 'The numerator as described in the QCDR measure specification.', notes: 'writable, required' }, - { name: 'denominator', value: 'float', description: 'The denominator as described in the QCDR measure specification.', notes: 'writable, required' }, + { name: 'numerator', value: 'float', description: 'The numerator as described in the measure specification.', notes: 'writable, required' }, + { name: 'denominator', value: 'float', description: 'The denominator as described in the measure specification.', notes: 'writable, required' }, { name: 'isEndToEndReported', value: 'boolean', description: 'True if the measure was reported via certified EHR technology without any manual interference.', notes: 'writable, required' }, - { name: 'numeratorExclusion', value: 'float', description: 'The exclusions from the numerator field as described in the QCDR measure specification.', notes: 'writable, optional' }, - { name: 'denominatorException', value: 'float', description: 'The exceptions from the denominator field as described in the QCDR measure specification.', notes: 'writable, optional' }, + { name: 'numeratorExclusion', value: 'float', description: 'The exclusions from the numerator field as described in the measure specification.', notes: 'writable, optional' }, + { name: 'denominatorException', value: 'float', description: 'The exceptions from the denominator field as described in the measure specification.', notes: 'writable, optional' }, { name: 'reportingRate', value: 'float', description: 'The reporting rate, ranging from zero to one-hundred and representing a percentage, is equal to ((observationInstances + denominatorException + numeratorExclusion) / denominator) * 100. This is also referred to as data completeness.', notes: 'calculated by API and returned in response' }, { name: 'caseCount', value: 'integer', description: 'The case count is a number zero or greater, that is equal to the denominator.', notes: 'calculated by API and returned in response' }, { name: 'observationInstances', value: 'integer', description: 'The number of denominator eligible instances that are used as input in the calculation to derive the numerator (i.e. average, ratio).', notes: 'writable, required' }, diff --git a/src/app/components/references/measurements.tsx b/src/app/components/references/measurements.tsx index c5160de5..0b01a1cf 100644 --- a/src/app/components/references/measurements.tsx +++ b/src/app/components/references/measurements.tsx @@ -6,7 +6,7 @@ import { DocPageProps } from '../../../shared/types'; const Measurements: React.FC = ({dataTestId}: DocPageProps) => { return (
-

Last Updated: 02/11/2025

{/* IMPORTANT: update this Last-Updated value if you have made any changes to this page's content. */} +

Last Updated: 12/12/2025

{/* IMPORTANT: update this Last-Updated value if you have made any changes to this page's content. */}

Measurements