put https://fhir-api.zapehr.com/r4b/Measure/
Measure on the FHIR specification website.
The Measure resource provides the definition of a quality measure.
The body should be a valid FHIR object for Measure.
Here is an example:
{
"resourceType": "Measure",
"id": "component-a-example",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Screening for Alcohol Misuse\n <p>This measure example is used to illustrate how a composite measure can be constructured. This measure is one component of the composite measure.</p></div>"
},
"title": "Screening for Alcohol Misuse",
"status": "draft",
"scoring": {
"coding": [
{
"code": "proportion"
}
]
},
"group": [
{
"id": "Main",
"population": [
{
"code": {
"coding": [
{
"code": "initial-population"
}
]
},
"criteria": {
"language": "text/cql",
"expression": "Initial Population"
}
},
{
"code": {
"coding": [
{
"code": "denominator"
}
]
},
"criteria": {
"language": "text/cql",
"expression": "Denominator"
}
},
{
"code": {
"coding": [
{
"code": "numerator"
}
]
},
"criteria": {
"language": "text/cql",
"expression": "Numerator"
}
}
]
}
]
}
You can reference the FHIR documentation to determine the format for Measure
.