Skip to content

CMSgov/qpp-measures-data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

36a796f · Nov 16, 2023
Nov 3, 2023
Nov 10, 2023
May 31, 2023
Sep 26, 2023
Nov 16, 2023
Oct 27, 2023
Nov 16, 2023
Oct 25, 2023
Aug 11, 2023
Jun 26, 2017
Nov 16, 2023
Oct 11, 2023
Jan 18, 2023
Jul 14, 2017
Oct 21, 2022
Jun 6, 2023
May 11, 2023
Dec 8, 2021
Aug 23, 2023
Aug 24, 2023
Apr 3, 2023
Nov 6, 2023
Oct 5, 2022
Nov 9, 2023
Nov 9, 2023
Oct 4, 2022

Repository files navigation

qpp-measures-data

Build Status

Performance Year 2024 Data

All Measure and Benchmark data for Performance Year 2024 is currently in progress and is subject to change.

Quality Payment Program Measures Data Repository

This is the source of truth for QPP measures data. Stability in the API contract for qpp-measures-data is prioritized but not guaranteed.

How to Use qpp-measures-data

Measures and benchmark data can be accessed by installing the qpp-measures-data NPM repository.

The measures data JSON schema is described in measures/$YEAR/measures-schema.yaml; $YEAR refers to the performance year. The measures data here combines existing data from the QPP API, with supplementary data found in util. To access measures data without installing the NPM repository, run git clone git@github.com:CMSgov/qpp-measures-data.git and navigate to measures/$YEAR/measures-data.json.

The benchmarks data JSON schema is described in benchmarks/benchmarks-schema.yaml.

To access the benchmarks data without installing the NPM repository, run git clone git@github.com:CMSgov/qpp-measures-data.git and navigate to benchmarks/. Benchmarks data is organized by performance year. For example, benchmarks/2017.json contains the benchmarks for performance year 2017 (benchmark year 2015).

Importing the qpp-measures-data module

Functions take a string version argument and return the appropriate YAML schema or JSON data.

The module can be used with the following pattern:

const qppMeasuresData = require('qpp-measures-data');
const measuresData = qppMeasuresData.getMeasuresData($YEAR);
const measuresSchema = qppMeasuresData.getMeasuresSchema($YEAR);
const benchmarksData = qppMeasuresData.getBenchmarksData();
const benchmarkData$YEAR = benchmarksData[$YEAR];
const benchmarksSchema = qppMeasuresData.getBenchmarksSchema();
// Note: for the following function, the mvpIds is an optional parameter (array of MVP IDs to filter by)
const mvpData = qppMeasuresData.getMVPData($YEAR, mvpIds);
const mvpSchema = qppMeasuresData.getMVPSchema($YEAR);

Contributing

Before creating pull requests, please make sure to review CONTRIBUTING.md.