Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following MeasureReport is built for the beginning balance measure. Each column in the requisition needs to be mapped to measures following this template. We only need to change the name. This measure has been shortened to only show the 4 products identified in the OpenLMIS screenshot above. Note that measureScore is meant to store a numerical Quantity and as such our use is a temporary workaround.  We will work with the FHIR community to add the ability to store textual representations. At this time, we will store test values as "code" within the measureScoreand the authors of the IHE mADX profile to find the right solution to this problem, which could be a future change to the FHIR MeasureReport definition, or the recommendation that we use an extension.

Code Block
{
  "resourceType": "MeasureReport",
  "text": {
    "status": "generated",
    "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p></div>"
  },
  "status": "complete",
  "type": "summary",
  "measure": "http://hapi.fhir.org/baseR4/Measure/10949",
  "reporter": {
    "reference": "Location/5772"
  },
  "period": {
    "start": "2019-01-01",
    "end": "2019-01-31"
  },
  "group": [
    {
      "code": {
        "text": "programName"
      },
      "measureScore": {
        "system": "openlmisProgramName",
        "code": "EPI"
      }
    },
    {
      "code": {
        "text": "bcg20"
      },
      "measureScore": {
        "value": "100"
      }
    },
    {
      "code": {
        "text": "penta1"
      },
      "measureScore": {
        "value": "100"
      }
    },
    {
      "code": {
        "text": "rota1"
      },
      "measureScore": {
        "value": "100"
      }
    },
    {
      "code": {
        "text": "tetanus10"
      },
      "measureScore": {
        "value": "100"
      }
    }
  ]
}

...