Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/app/components/references/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const measurementsFields: IFields = {
{ name: 'isEndToEndReported', value: 'boolean', description: 'True if the measure was reported via certified EHR technology without any manual interference.', notes: 'writable, required' },
{ name: 'performanceMet', value: 'integer', description: 'The number of patients for which the measure criteria are satisfied. Must be greater than or equal to zero and less than or equal to the <b>eligiblePopulation</b>', notes: 'writable, required' },
{ name: 'performanceNotMet', value: 'integer', description: 'The number of patients for which the measure criteria are not satisfied.', notes: 'writable, optional' },
{ name: 'eligiblePopulationExclusion', value: 'integer', description: 'The number of patients who are excluded from the measure.', notes: 'writable, optional' },
{ name: 'eligiblePopulationExclusion', value: 'integer', description: 'The number of patients who are excluded from the measure. eligiblePopulationExclusion should be 0 for all QCDR measures as excluded populations should already have been subtracted out of the eligible population in the denominator.', notes: 'writable, optional' },
{ name: 'eligiblePopulationException', value: 'integer', description: 'The number of patients for which the measure criteria are not satisfied but who are excluded from the measure. In the measures specifications, this field is also referred to as "Denominator Exception".', notes: 'writable, optional' },
{ name: 'numeratorExclusion', value: 'integer', description: 'The number of patients for which the measure criteria are not satisfied but who are excluded from the measure. In the measures specifications, this field is also referred to as "Numerator Exclusion".', notes: 'writable, optional' },
{ name: 'eligiblePopulation', value: 'integer', description: 'The total number of eligible patients as described by the measure. Must be greater than or equal to zero. In the measures specifications, this field is also referred to as "Eligible Population Denominator".', notes: 'writable, required' },
Expand Down Expand Up @@ -452,4 +452,3 @@ export const scoringData: IScoringData = {
}],
};


2 changes: 1 addition & 1 deletion src/app/components/references/measurements.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { DocPageProps } from '../../../shared/types';
const Measurements: React.FC<DocPageProps> = ({dataTestId}: DocPageProps) => {
return (
<div data-testid={dataTestId}>
<p className='qpp-docs-page-updated'>Last Updated: 12/12/2025</p> {/* IMPORTANT: update this Last-Updated value if you have made any changes to this page's content. */}
<p className='qpp-docs-page-updated'>Last Updated: 04/10/2026</p> {/* IMPORTANT: update this Last-Updated value if you have made any changes to this page's content. */}
<h2 className='ds-text-heading--2xl' style={{marginTop: 0}}>Measurements</h2>
<ul>
{Object.entries(measurementsTitleAndId).map(([title, id], i) =>
Expand Down
Loading