Hey everyone,
I am currently just using postman to post the example xml on found on the qpp website at
https://cmsgov.github.io/qpp-submissions-docs/examples. My headers are fine because I get valid responses when working with json, but when posting the example xml this is my response:
{
"error": {
"type": "ValidationError",
"message": "invalid measurement-set object",
"details": [
{
"message": "field 'category' in MeasurementSet is missing",
"path": "$.category"
},
{
"message": "field 'submissionMethod' in MeasurementSet is missing",
"path": "$.submissionMethod"
},
{
"message": "field 'performanceStart' in MeasurementSet is missing",
"path": "$.performanceStart"
},
{
"message": "field 'performanceEnd' in MeasurementSet is missing",
"path": "$.performanceEnd"
}
]
}
}
I have played around with the capitalization of everything because in the error MeasurementSet is capitalized but it is not in the example xml, and that also did not fix it. Does anyone know what the issue might be?