diff --git a/src/app/components/references/data.ts b/src/app/components/references/data.ts index bef31eca..8700b8ef 100644 --- a/src/app/components/references/data.ts +++ b/src/app/components/references/data.ts @@ -262,10 +262,10 @@ export const measurementSetsFields: IFields = { { name: 'createdAt', value: 'datetime', description: 'The creation time of the measurement set in RFC 3339 format.', notes: ' ' }, { name: 'updatedAt', value: 'datetime', description: 'The modification time of the measurement set in RFC 3339 format.', notes: ' ' }, { name: 'submissionId', value: 'string', description: 'The id of the submission in which the measurement set belongs.', notes: ' ' }, - { name: 'category', value: 'string', description: 'The category of the measurement set. Acceptable values are "ia", "pi" and "quality". Note you cannot submit "pi" measurement sets for "apm" entity types.', notes: 'writable, required' }, + { name: 'category', value: 'string', description: 'The category of the measurement set. Acceptable values are:
  • "quality"
  • "pi"
  • "ia"
  • ', notes: 'writable, required' }, { name: 'chertId', value: 'string', description: 'The CMS EHR Certification Identification Number is generated by the CHPL. This is only applicable to Promoting Interoperability measurement sets.', notes: 'writable, required' }, - { name: 'submissionMethod', value: 'string', description: 'The method by which the measurement set data was submitted. Acceptable values are "registry" and "electronicHealthRecord".', notes: 'writable, required' }, - { name: 'programName', value: 'string', description: 'The quality payment program under which the measurementSet should be scored. Acceptable values are "mips", "app1, and "pcf". If not provided, the programName will be recorded as "mips".', notes: 'writable, optional' }, + { name: 'submissionMethod', value: 'string', description: 'The method by which the measurement set data was submitted. Acceptable values are: ', notes: 'writable, required' }, + { name: 'programName', value: 'string', description: 'The quality payment program under which the measurementSet should be scored. Acceptable values are:
  • "mips" for Traditional MIPS Reporting
  • "app1" for the APM Performance Pathway
  • "MVP ID" more information on the IDs can be found at the QPP Resource Library
  • "pcf" for PCF Program submissions
  • If not provided, the programName will be recorded as "mips".', notes: 'writable, optional' }, { name: 'practiceDetails', value: 'object', description: `This object contains the taxpayerIdentificationNumber and/or nationalProviderIdentifiers of the practice associated with the measurement set. Optional if programName is set to "pcf". Must be omitted if programName is not set to "pcf". More details below.`, notes: 'writeable, optional'}, { name: 'performanceStart', value: 'string', description: 'A date in RFC 3339 format with only the date part (for instance, "2013-01-15"). The first date when the measurement data is applicable.', notes: 'writable, required' }, { name: 'performanceEnd', value: 'string', description: 'A date in RFC 3339 format with only the date part (for instance, "2013-01-15"). The last date when the measurement data is applicable.', notes: 'writable, required' }, diff --git a/src/app/components/references/measurement-sets.tsx b/src/app/components/references/measurement-sets.tsx index 51c37491..f910615b 100644 --- a/src/app/components/references/measurement-sets.tsx +++ b/src/app/components/references/measurement-sets.tsx @@ -7,7 +7,7 @@ import { measurementSetsFields, measurementSetsTabs, measurementSetPracticeDetai const MeasurementSets = () => { return ( <> -

    Last Updated: 08/31/2022

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

    Last Updated: 05/02/2023

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

    Measurement Sets

    The MeasurementSets resource represents performance data for a specified category. Each Submission can have multiple MeasurementSets. Each MeasurementSet in a given Submission is uniquely identified by category, submission method, and programName. MeasurementSets contain Measurements, which can be accessed both via MeasurementSets methods and Measurements methods.