You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{name: 'numeratorExclusion',value: 'float',description: 'The exclusions from the numerator field as described in the QCDR measure specification.',notes: 'writable, optional'},
55
55
{name: 'denominatorException',value: 'float',description: 'The exceptions from the denominator field as described in the QCDR measure specification.',notes: 'writable, optional'},
56
56
{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'},
57
+
{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'},
57
58
{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'},
{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'},
65
66
{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'},
66
67
{name: 'reportingRate',value: 'float',description: 'The reporting rate, ranging from zero to one-hundred and representing a percentage, is equal to ((performanceMet + eligiblePopulationExclusion + eligiblePopulationException + performanceNotMet) / eligiblePopulation) * 100. This is also referred to as data completeness.',notes: 'calculated by API and returned in response'},
68
+
{name: 'caseCount',value: 'integer',description: 'The case count, a number zero or greater, is equal to eligiblePopulation.',notes: 'calculated by API and returned in response'},
67
69
{name: 'performanceRate',value: 'float',description: 'The performance rate for a single performance rate measurement, ranging from zero to one-hundred and representing a percentage, is equal to (performanceMet / (performanceMet + performanceNotMet)) * 100.',notes: `For <code>metricType = singlePerformanceRate</code>, then calculated by API and returned in response.`},
68
70
],
69
71
qcdrSinglePerformanceRate: [
70
72
{name: 'isEndToEndReported',value: 'boolean',description: 'True if the measure was reported via certified EHR technology without any manual interference.',notes: 'writable, required'},
71
73
{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'},
72
74
{name: 'performanceNotMet',value: 'integer',description: 'The number of patients for which the measure criteria are not satisfied.',notes: 'writable, optional'},
73
-
{name: 'eligiblePopulationExclusion',value: 'integer',description: 'The number of patients who are excluded from the measure. eligiblePopulationExclusion should be 0 for all CQM measures as excluded populations should already have been subtracted out of the eligible population in the denominator.',notes: 'writable, optional'},
75
+
{name: 'eligiblePopulationExclusion',value: 'integer',description: 'The number of patients who are excluded from the measure.',notes: 'writable, optional'},
74
76
{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'},
75
77
{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'},
76
78
{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'},
77
79
{name: 'reportingRate',value: 'float',description: 'The reporting rate, ranging from zero to one-hundred and representing a percentage, is equal to ((performanceMet + eligiblePopulationExclusion + eligiblePopulationException + performanceNotMet) / eligiblePopulation) * 100. This is also referred to as data completeness.',notes: 'calculated by API and returned in response'},
80
+
{name: 'caseCount',value: 'integer',description: 'The case count, a number zero or greater, is equal to (eligiblePopulation - eligiblePopulationExclusions).',notes: 'calculated by API and returned in response'},
78
81
{name: 'performanceRate',value: 'float',description: 'The performance rate for a single performance rate measurement, ranging from zero to one-hundred and representing a percentage, is equal to (performanceMet / (performanceMet + performanceNotMet)) * 100.',notes: `For <code>metricType = registrySinglePerformanceRate</code> then writable and <i>required</i>`},
'<li><b>split:</b> reporting strata will be used for data completenesss, performance will be used for performance rate.</li></ul>',
96
99
notes: `If <code>metricType = registryMultiPerformanceRate</code> then writable and <i>required</i>.<br> If <code>metricType = multiPerformanceRate</code>, then calculated by API and returned in response.`,
97
100
},
101
+
{
102
+
name: 'caseCount',
103
+
value: 'integer',
104
+
description: 'The case count, a number zero or greater, for a multiple performance rate measurement is equal to the eligiblePopulation minus eligiblePopulationExclusions (eligiblePopulationExclusions will be 0 for CQMs). The calculation varies based on the measure\'s overallAlgorithm:\n'+
105
+
'<ul>'+
106
+
'<li><b>simpleAverage:</b> The case count is evaluated for each stratum, and the highest caseCount is selected.</li>'+
107
+
'<li><b>weightedAverage:</b> The case count is the sum of the caseCount for each stratum.</li>'+
108
+
'<li><b>overallStratumOnly:</b> The case count is calculated from the "overall" stratum only.</li>'+
109
+
'<li><b>split:</b> The case count is calculated from the "reporting" strata only.</li>'+
110
+
'</ul>',
111
+
notes: 'calculated by API and returned in response.'
112
+
},
98
113
{name: 'strata',value: 'Array(performanceRateStratum)',description: 'The strata name associated with the performance rate measurement. Needs to match with the measure strata names in <a href="https://github.com/CMSgov/qpp-measures-data" rel="noopener noreferrer" target="_blank">qpp-measures-data</a>.',notes: 'writable, required'},
<pclassName='qpp-docs-page-updated'>Last Updated: 08/15/2023</p>{/* IMPORTANT: update this Last-Updated value if you have made any changes to this page's content. */}
9
+
<pclassName='qpp-docs-page-updated'>Last Updated: 02/11/2025</p>{/* IMPORTANT: update this Last-Updated value if you have made any changes to this page's content. */}
0 commit comments