The intention of this code is to demonstrate example Web Interface API clients and how one could use the APIs to programmtically complete their reporting requirements. Each project is self contained in its own project directory (Ex. node-client), and each project has its own README.
A set of example data has been provided for these examples. This data.json file represents completed submission data for each of the 14 Quality Scoring measures. Details on these measures can be found here
The actual submission data that you will send should be mapped from you EHR system to the expected format.
For example, submissions for a beneficiary in PREV-5 would look like this:
[
{
"attribute": "confirmation",
"value":"Y"
},
{
"attribute": "screening-performed",
"value":"Y"
}
]
The measures metadata can be found here. Reviewing the metadata should provide sufficient explanation of each measure and the expected answers for the measure questions.
If you have Git installed, go on and clone the repository. From your favorite command line:
$ git clone https://github.com/CMSgov/beneficiary-reporting-api-client-examples.git
To run the individual example projects see the README in their respective project directories.