Release 5 Draft Ballot

This page is part of the FHIR Specification (v4.6.0: R5 Draft Ballot). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B

Measurereport-general-example.json

Clinical Quality Information Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Patient

Raw JSON (canonical form + also see JSON Format Specification)

Example MeasureReport for a single patient

{
  "resourceType": "MeasureReport",
  "id": "general-example-of-report",
  "text": {
    "status": "generated",
    "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>status</b>: complete</p><p><b>type</b>: individual</p><p><b>measure</b>: <a>http://ohie.org/Measure/hiv-indicators</a></p><p><b>subject</b>: <a> </a></p><blockquote><p><b>name</b>: Duck Donald (OFFICIAL)</p><p><b>gender</b>: male</p><p><b>birthDate</b>: 1976-05-17</p><p><b>address</b>: 1234 Main Street DC 20001 USA (HOME)</p></blockquote><p><b>period</b>: 2018-01-01 --&gt; 2018-12-31</p><blockquote><p><b>group</b></p><p><b>code</b>: <span>QRPH_ADX_ART5_N</span></p><p><b>measureScore</b>: 1</p><blockquote><p><b>stratifier</b></p><p><b>code</b>: <span>AGE_GROUP:SEX</span></p><blockquote><p><b>stratum</b></p><p><b>value</b>: <span>P0Y--P20Y:F</span></p><p><b>measureScore</b>: 0</p></blockquote><blockquote><p><b>stratum</b></p><p><b>value</b>: <span>P0Y--P20Y:M</span></p><p><b>measureScore</b>: 0</p></blockquote><blockquote><p><b>stratum</b></p><p><b>value</b>: <span>P20Y--P40Y:F</span></p><p><b>measureScore</b>: 0</p></blockquote><blockquote><p><b>stratum</b></p><p><b>value</b>: <span>P20Y--P40Y:M</span></p><p><b>measureScore</b>: 0</p></blockquote><blockquote><p><b>stratum</b></p><p><b>value</b>: <span>P40Y--P65Y:F</span></p><p><b>measureScore</b>: 0</p></blockquote><blockquote><p><b>stratum</b></p><p><b>value</b>: <span>P40Y--P65Y:M</span></p><p><b>measureScore</b>: 1</p></blockquote></blockquote></blockquote></div>"
  },
  "contained": [
    {
      "resourceType": "Patient",
      "id": "patient-new",
      "name": [
        {
          "use": "official",
          "family": "Donald",
          "given": [
            "Duck"
          ]
        }
      ],
      "gender": "male",
      "birthDate": "1976-05-17",
      "address": [
        {
          "use": "home",
          "line": [
            "1234 Main Street"
          ],
          "city": "DC",
          "postalCode": "20001",
          "country": "USA"
        }
      ]
    }
  ],
  "status": "complete",
  "type": "individual",
  "measure": "http://ohie.org/Measure/hiv-indicators",
  "subject": {
    "reference": "#patient-new"
  },
  "period": {
    "start": "2018-01-01",
    "end": "2018-12-31"
  },
  "group": [
    {
      "code": {
        "coding": [
          {
            "code": "QRPH_ADX_ART5_N"
          }
        ]
      },
      "measureScoreQuantity": {
        "value": 1
      },
      "stratifier": [
        {
          "code": [
            {
              "coding": [
                {
                  "code": "AGE_GROUP:SEX"
                }
              ]
            }
          ],
          "stratum": [
            {
              "valueCodeableConcept": {
                "coding": [
                  {
                    "code": "P0Y--P20Y:F"
                  }
                ]
              },
              "measureScoreQuantity": {
                "value": 0
              }
            },
            {
              "valueCodeableConcept": {
                "coding": [
                  {
                    "code": "P0Y--P20Y:M"
                  }
                ]
              },
              "measureScoreQuantity": {
                "value": 0
              }
            },
            {
              "valueCodeableConcept": {
                "coding": [
                  {
                    "code": "P20Y--P40Y:F"
                  }
                ]
              },
              "measureScoreQuantity": {
                "value": 0
              }
            },
            {
              "valueCodeableConcept": {
                "coding": [
                  {
                    "code": "P20Y--P40Y:M"
                  }
                ]
              },
              "measureScoreQuantity": {
                "value": 0
              }
            },
            {
              "valueCodeableConcept": {
                "coding": [
                  {
                    "code": "P40Y--P65Y:F"
                  }
                ]
              },
              "measureScoreQuantity": {
                "value": 0
              }
            },
            {
              "valueCodeableConcept": {
                "coding": [
                  {
                    "code": "P40Y--P65Y:M"
                  }
                ]
              },
              "measureScoreQuantity": {
                "value": 1
              }
            }
          ]
        }
      ]
    }
  ]
}

Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.