ediverse Explore the platform

Spotlight PEPPOL BIS Billing 3.0 The EU e-invoicing mandate is here — France Sept 2026, Belgium Jan 2026, Germany 2025.

MeasureReport — Quality-measure report

A Measure has been evaluated against a population: MeasureReport carries the result (numerator, denominator, score, exclusions). Quality-reporting pivot.

Purpose

MeasureReport is the structured result of a Measure execution. Three modes: individual (1 patient), summary (aggregate), subject-list (detail list). Used by CMS for HEDIS/eCQM, ANAP for French IFAQ indicators.

Key fields

FieldTypeCardinalityRole
statuscode1..1complete, pending, error.
typecode1..1individual, subject-list, summary, data-collection.
measurecanonical(Measure)1..1Evaluated Measure URL.
subjectReference(Patient | Group | ...)0..1Subject if individual.
datedateTime0..1Generation date.
reporterReference(Practitioner | Organization | ...)0..1Reporting entity.
periodPeriod1..1Measurement period.
groupBackboneElement[]0..*Population groups + scores.

JSON example

HbA1c control report for one patient:

json measurereport-example.json
{
  "resourceType": "MeasureReport",
  "id": "example",
  "status": "complete",
  "type": "summary",
  "measure": "http://hl7.org/fhir/Measure/diabetes-hba1c-control",
  "subject": { "reference": "Patient/example" },
  "date": "2026-05-16",
  "reporter": { "reference": "Organization/clinic" },
  "period": { "start": "2026-01-01", "end": "2026-12-31" },
  "group": [{
    "id": "diabetes-control",
    "population": [{
      "code": { "coding": [{ "code": "initial-population" }] },
      "count": 1
    }, {
      "code": { "coding": [{ "code": "numerator" }] },
      "count": 1
    }],
    "measureScore": { "value": 1, "unit": "%" }
  }]
}

Common pitfalls

  • period missing: the measure is not temporally comparable.
  • non-canonical measure: must point to a published Measure (canonical URL).
  • numerator > denominator: logic error to validate at generator level.
  • Measure — The executed measure.
  • Library — CQL evaluation library.
  • Group — Targeted cohort.
  • QuestionnaireResponse — Patient data feeding the measure.