Hi Team,
I am using this end point
https://qpp-submissions-sandbox.navapbc.com/submissions/score-preview, when we are posting following json data then i am getting error, could you please help me what exactly problem there while "registry" submission method only it is working fine but other submission methods (electronicHealthRecord, claims, certifiedSurveyVendor, cmsWebInterface, administrativeClaims) it is not working and giving error :
As some time before it was working file for all submission method. Please provide me solution as soon as possible.
Json Request:
{
"programName":"mips",
"entityType":"individual",
"taxpayerIdentificationNumber":"000456789",
"nationalProviderIdentifier":"0876543210",
"performanceYear":2017,
"measurementSets":[
{
"category":"quality",
"submissionMethod":"electronicHealthRecord",
"performanceStart":"2017-01-01",
"performanceEnd":"2017-12-01",
"measurements":[
{
"measureId":"091",
"value":{
"isEndToEndReported":false,
"performanceMet":23,
"eligiblePopulation":56
}
},
{
"measureId":"366",
"value":{
"isEndToEndReported":false,
"strata":[
{
"performanceMet":34,
"eligiblePopulation":56,
"stratum":"visitWithin30Days"
},
{
"performanceMet":23,
"eligiblePopulation":56,
"stratum":"visitAndFollowups"
}
]
}
}
]
}
]
}
Error getting :
{
"error": {
"type": "ValidationError",
"message": "invalid submission object",
"details": [
{
"path": "$.measurementSet[0].measurement[0]",
"message": "field 'submissionMethod' in MeasurementSet is invalid: measurementSet has a submissionMethod of 'electronicHealthRecord', but the measure only permits 'claims, registry' submissionMethods"
}
]
}
}