FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions icon

Clinical Quality Information icon Work Group Maturity Level: 3Deprecated Compartments: N/A

The evaluate-measure operation is used to calculate an eMeasure and obtain the results.

The canonical URL for this operation definition is

 http://hl7.org/fhir/OperationDefinition/Measure-evaluate-measure

Formal Definition (as a OperationDefinition).

URL: [base]/Measure/$evaluate-measure

URL: [base]/Measure/[id]/$evaluate-measure

This is an idempotent operation

In Parameters:
Name Scope Cardinality Type Binding Profile Documentation
measure type 0..1 Measure

The measure to evaluate. If the operation is invoked at the instance level, this parameter is not allowed; if the operation is invoked at the type level, this parameter is required, or a url (and optionally version) must be supplied.

url type 0..1 canonical(Measure)

The url of the measure to be applied. If the operation is invoked at the instance level, this parameter is not allowed; if the operation is invoked at the type level, this parameter (and optionally the version), or the measure parameter must be supplied

version type 0..1 string

The version of the measure to be applied. If the operation is invoked at the instance level, this parameter is not allowed; if the operation is invoked at the type level, this parameter may only be used if the url parameter is supplied, and the version is not supplied with it.

subject 0..1 string
(reference)

Subject for which the measure will be calculated. The subject must be an instance of a type that is consistent with the subjectType of the Measure being evaluated (e.g. Patient, Practitioner, Location...). The subject may be a Patient, Practitioner, PractitionerRole, Organization, Location, Device, or Group. If the subject is a Group, it must be an actual Group, not a definitional one. Subjects provided in this parameter SHALL match the subjectType of the measure being evaluated (i.e. if the Measure.subjectType is Patient, the subject SHALL be a reference to a Patient or a Group of Patients). If no subject is provided, the evaluation will be performed for all subjects appropriate to the Measure.subjectType (possibly constrained further by the provider parameter).

periodStart 1..1 date

The start of the measurement period. In keeping with the semantics of the date parameter used in the FHIR search operation, the period will start at the beginning of the period implied by the supplied timestamp. E.g. a value of 2014 would set the period start to be 2014-01-01T00:00:00 inclusive

periodEnd 1..1 date

The end of the measurement period. The period will end at the end of the period implied by the supplied timestamp. E.g. a value of 2014 would set the period end to be 2014-12-31T23:59:59 inclusive

reportType 0..1 code Measure Report Evaluation Type (Required)

The type of measure report: individual, subject-list, or summary. If not specified, a default value of subject will be used if the subject parameter is supplied and is not a Group, otherwise, summary will be used. NOTE: Implementations should support the use of subject for individual and population for summary for backwards compatibility with existing implementations.

provider 0..1 string
(reference)

The provider for which the report will be run. This may be a reference to a Practitioner, PractitionerRole, or Organization. If specified, the measure will be calculated for subjects that have a primary relationship to the identified provider. How this relationship is determined is implementation-specific.

location 0..1 string
(reference)

The location for which the report will be run.

lastReceivedOn 0..1 dateTime

The date the results of this measure were last received. This parameter is only valid for patient-level reports and is used to indicate when the last time a result for this patient was received. This information can be used to limit the set of resources returned for a patient-level report

parameters 0..1 Parameters

Any input parameters for the evaluation. Parameters defined in this input will be made available by name to the CQL expression. Parameter types are mapped to CQL as specified in the Using CQL with FHIR icon implementation guide. If a parameter appears more than once in the input Parameters resource, it is represented with a List in the input CQL. If a parameter has parts, it is represented as a Tuple in the input CQL.

Out Parameters:
Name Scope Cardinality Type Binding Profile Documentation
return 0..* Bundle

The results of the measure calculation. The result of this operation will be a Bundle for each input subject, where the first entry of the Bundle is a MeasureReport representing the results of the calculation, and subsequent entries in the Bundle are resources created and/or evaluated as part of the calculation. See the MeasureReport resource for a complete description of the output of this operation. Note that implementations may choose to return a MeasureReport with a status of pending to indicate that the report is still being generated. In this case, the client can use a polling method to continually request the MeasureReport until the status is updated to complete

The effect of invoking this operation is to calculate the measure for the given subject(s), or all subjects if no subject is supplied. For individual and subject-list reports, the result is a set of Bundles, one for each evaluated subject, where the first entry in each bundle is a MeasureReport resource, and subsequent entries in the Bundle are resources evaluated or created as part of the measure evaluation. For the summary report, the result of this operation is a single bundle with a single MeasureReport of type summary. Note that whether or not this operation affects the state of the server depends on whether the server persists the generated MeasureReport. If the MeasureReport is not persisted, this operation can be invoked with GET

Request: 1) Evaluation of the CMS146 measure for all patients over a measurement period of all of 2014

GET [base]/Measure/CMS146/$evaluate-measure?periodStart=2014&periodEnd=2014

Request: 2) Evaluation of the CMS146 measure for Patient/124 over a measurement period of the first 3 months of 2014

GET [base]/Measure/CMS146/$evaluate-measure?subject=Patient/124&periodStart=2014-01&periodend=2014-03

Response: 1) Returned on successful evaluation of the CMS146 measure for all patients over a measurement period of 2014

HTTP/1.1 200 OK

<?xml version="1.0" encoding="UTF-8"?>
<Parameters  xmlns="http://hl7.org/fhir" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../../schema/measurereport.xsd">
  <parameter>
    <name value="return"/>
    <resource>
      <Bundle>
        <type value="transaction-response"/>
        <entry>
          <resource>
            <MeasureReport>
              <id value="evaluate-measure-operation-response"/>
              <text>
                <status value="generated"/>
                <div xmlns="http://www.w3.org/1999/xhtml">
              <!-- Generated... -->
                </div>
              </text>
              <status value="complete"/>
              <type value="summary"/>
              <measure value="http://example.org/fhir/Measure/CMS146"/>
              <reporter>
                <reference value="Organization/reporter"/>
              </reporter>
              <period>
                  <start value="2014-01-01" />
                  <end value="2014-12-31" />
              </period>
              <group id="CMS146-group-1">
                <population>
                  <code><coding><code value="initial-population"/></coding></code>
                  <count value="500"/>
                </population>
                <population>
                  <code><coding><code value="numerator"/></coding></code>
                  <count value="200"/>
                </population>
                <population>
                  <code><coding><code value="denominator"/></coding></code>
                  <count value="500"/>
                </population>
                <population>
                  <code><coding><code value="denominator-exclusion"/></coding></code>
                  <count value="100"/>
                </population>
                <stratifier>
                  <code><text value="stratifier-ages-up-to-9"/></code>
                  <stratum>
                    <value><text value="true"/></value>
                    <population>
                      <code><coding><code value="initial-population"/></coding></code>
                      <count value="250"/>
                    </population>
                    <population>
                      <code><coding><code value="numerator"/></coding></code>
                      <count value="100"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator"/></coding></code>
                      <count value="250"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator-exclusion"/></coding></code>
                      <count value="50"/>
                    </population>
                  </stratum>
                  <stratum>
                    <value><text value="false"/></value>
                    <population>
                      <code><coding><code value="initial-population"/></coding></code>
                      <count value="250"/>
                    </population>
                    <population>
                      <code><coding><code value="numerator"/></coding></code>
                      <count value="100"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator"/></coding></code>
                      <count value="250"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator-exclusion"/></coding></code>
                      <count value="50"/>
                    </population>
                  </stratum>
                </stratifier>
                <stratifier>
                  <code><text value="stratifier-ages-10-plus"/></code>
                  <stratum>
                    <value><text value="true"/></value>
                    <population>
                      <code><coding><code value="initial-population"/></coding></code>
                      <count value="250"/>
                    </population>
                    <population>
                      <code><coding><code value="numerator"/></coding></code>
                      <count value="100"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator"/></coding></code>
                      <count value="250"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator-exclusion"/></coding></code>
                      <count value="50"/>
                    </population>
                  </stratum>
                  <stratum>
                    <value><text value="false"/></value>
                    <population>
                      <code><coding><code value="initial-population"/></coding></code>
                      <count value="250"/>
                    </population>
                    <population>
                      <code><coding><code value="numerator"/></coding></code>
                      <count value="100"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator"/></coding></code>
                      <count value="250"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator-exclusion"/></coding></code>
                      <count value="50"/>
                    </population>
                  </stratum>
                </stratifier>
                <stratifier>
                  <code><text value="stratifier-gender"/></code>
                  <stratum>
                    <value><text value="male"/></value>
                    <population>
                      <code><coding><code value="initial-population"/></coding></code>
                      <count value="250"/>
                    </population>
                    <population>
                      <code><coding><code value="numerator"/></coding></code>
                      <count value="100"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator"/></coding></code>
                      <count value="250"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator-exclusion"/></coding></code>
                      <count value="50"/>
                    </population>
                  </stratum>
                  <stratum>
                    <value><text value="female"/></value>
                    <population>
                      <code><coding><code value="initial-population"/></coding></code>
                      <count value="250"/>
                    </population>
                    <population>
                      <code><coding><code value="numerator"/></coding></code>
                      <count value="100"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator"/></coding></code>
                      <count value="250"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator-exclusion"/></coding></code>
                      <count value="50"/>
                    </population>
                  </stratum>
                  <stratum>
                    <value><text value="other"/></value>
                    <population>
                      <code><coding><code value="initial-population"/></coding></code>
                      <count value="0"/>
                    </population>
                    <population>
                      <code><coding><code value="numerator"/></coding></code>
                      <count value="0"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator"/></coding></code>
                      <count value="0"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator-exclusion"/></coding></code>
                      <count value="0"/>
                    </population>
                  </stratum>
                  <stratum>
                    <value><text value="unknown"/></value>
                    <population>
                      <code><coding><code value="initial-population"/></coding></code>
                      <count value="0"/>
                    </population>
                    <population>
                      <code><coding><code value="numerator"/></coding></code>
                      <count value="0"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator"/></coding></code>
                      <count value="0"/>
                    </population>
                    <population>
                      <code><coding><code value="denominator-exclusion"/></coding></code>
                      <count value="0"/>
                    </population>
                  </stratum>
                </stratifier>
              </group>
            </MeasureReport>
          </resource>
        </entry>
        <entry>
          <resource>
            <Organization>
              <id value="reporter"/>
              <name value="Good Health Hospital"/>
            </Organization>
          </resource>
        </entry>
      </Bundle>
    </resource>
  </parameter>
</Parameters>

Response: 2) Returned on successful evaluation of the CMS146 measure for Patient/124 over a measurement period of the first 3 months of 2014

HTTP/1.1 200 OK

<?xml version="1.0" encoding="UTF-8"?>
<Parameters xmlns="http://hl7.org/fhir" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://hl7.org/fhir ../../schema/measurereport.xsd">
    <parameter>
        <name value="return"/>
        <resource>
            <Bundle>
                <type value="transaction-response"/>
                <entry>
                    <resource>
                        <MeasureReport xmlns="http://hl7.org/fhir"
                            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                            xsi:schemaLocation="http://hl7.org/fhir ../../schema/measurereport.xsd">
                            <id value="measurereport-cms146-cat1-example"/>
                            <text>
                                <status value="generated"/>
                                <div xmlns="http://www.w3.org/1999/xhtml">
                                    <table class="grid dict">
                                        <tr>
                                            <td>
                                                <b>Id: </b>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;"
                                                >MeasureReport/measurereport-cms146-cat1-example</td>
                                        </tr>
                                    </table>
                                    <p/>
                                    <table class="grid dict">
                                        <tr>
                                            <td>
                                                <b>Measure: </b>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;">
                                                <span style="padding-left: 25px;">
                                                  <b>reference: </b>
                                                  <span>Measure/CMS146</span>
                                                  <br/>
                                                </span>
                                            </td>
                                        </tr>
                                    </table>
                                    <p/>
                                    <table class="grid dict">
                                        <tr>
                                            <td>
                                                <b>Type: </b>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;"
                                                >individual</td>
                                        </tr>
                                    </table>
                                    <p/>
                                    <table class="grid dict">
                                        <tr>
                                            <td>
                                                <b>Patient: </b>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;">
                                                <span style="padding-left: 25px;">
                                                  <b>reference: </b>
                                                  <span>Patient/124</span>
                                                  <br/>
                                                </span>
                                            </td>
                                        </tr>
                                    </table>
                                    <p/>
                                    <table class="grid dict">
                                        <tr>
                                            <td>
                                                <b>Period: </b>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;">
                                                <b>start: </b>
                                                <span>Wed Jan 01 00:00:00 MST 2014</span>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;">
                                                <b>end: </b>
                                                <span>Mon Mar 31 00:00:00 MDT 2014</span>
                                            </td>
                                        </tr>
                                    </table>
                                    <p/>
                                    <table class="grid dict">
                                        <tr>
                                            <td>
                                                <b>Status: </b>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;"
                                                >complete</td>
                                        </tr>
                                    </table>
                                    <p/>
                                    <table class="grid dict">
                                        <tr>
                                            <td>
                                                <b>Reporting Organization: </b>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;">
                                                <p style="margin-bottom: 5px;">
                                                  <span>
                                                  <b>name: </b>
                                                  <span>Good Health Hospital</span>
                                                  </span>
                                                </p>
                                            </td>
                                        </tr>
                                    </table>
                                    <table class="grid dict">
                                        <tr>
                                            <td>
                                                <b>Group:</b>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px;">
                                                <p style="margin-bottom: 5px;">
                                                  <b>value: </b>
                                                  <span>CMS146-group-1</span>
                                                </p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px;">
                                                <b>Population:</b>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>type: </b>
                                                  <span>initial-population</span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>count: </b>
                                                  <span>1</span>
                                                </p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px;">
                                                <b>Population:</b>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>type: </b>
                                                  <span>numerator</span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>count: </b>
                                                  <span>1</span>
                                                </p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px;">
                                                <b>Population:</b>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>type: </b>
                                                  <span>denominator</span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>count: </b>
                                                  <span>1</span>
                                                </p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px;">
                                                <b>Population:</b>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>type: </b>
                                                  <span>denominator-exclusion</span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>count: </b>
                                                  <span>0</span>
                                                </p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;">
                                                <b>Stratifier:</b>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <span>
                                                  <b>value: </b>
                                                  <span>CMS146-group-1</span>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>true</span>
                                                  <br/>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>initial-population</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>1</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>numerator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>1</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>1</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator-exclusion</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>false</span>
                                                  <br/>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>initial-population</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>numerator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator-exclusion</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                </p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;">
                                                <b>Stratifier:</b>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <span>
                                                  <b>value: </b>
                                                  <span>CMS146-group-1</span>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>true</span>
                                                  <br/>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>initial-population</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>numerator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator-exclusion</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>false</span>
                                                  <br/>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>initial-population</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>1</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>numerator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>1</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>1</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator-exclusion</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                </p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;">
                                                <b>Stratifier:</b>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <span>
                                                  <b>value: </b>
                                                  <span>CMS146-group-1</span>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>male</span>
                                                  <br/>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>initial-population</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>1</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>numerator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>1</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>1</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator-exclusion</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>female</span>
                                                  <br/>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>initial-population</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>numerator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator-exclusion</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>other</span>
                                                  <br/>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>initial-population</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>numerator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator-exclusion</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>unknown</span>
                                                  <br/>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>initial-population</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>numerator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                  <span>
                                                  <span style="padding-left: 25px;">
                                                  <b>Population:</b>
                                                  </span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>type: </b>
                                                  </span>
                                                  <span>denominator-exclusion</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 50px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                  <br/>
                                                  </span>
                                                </p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;">
                                                <b>Supplemental:</b>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <span>
                                                  <b>value: </b>
                                                  <span>supplemental-data-gender</span>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>male</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>1</span>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>female</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>other</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>unknown</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                </p>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;">
                                                <b>Supplemental:</b>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <span>
                                                  <b>value: </b>
                                                  <span>supplemental-data-deceased</span>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>true</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>0</span>
                                                  </span>
                                                </p>
                                                <p style="padding-left: 25px; margin-bottom: 5px;">
                                                  <b>Group:</b>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>value: </b>
                                                  </span>
                                                  <span>false</span>
                                                  <span>
                                                  <br/>
                                                  <span style="padding-left: 25px;">
                                                  <b>count: </b>
                                                  </span>
                                                  <span>1</span>
                                                  </span>
                                                </p>
                                            </td>
                                        </tr>
                                    </table>
                                    <p/>
                                    <table class="grid dict">
                                        <tr>
                                            <td>
                                                <b>Evaluated Resources: </b>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-right: 25px;">
                                                <span style="padding-left: 25px;">
                                                  <b>reference: </b>
                                                  <span>Bundle/456</span>
                                                  <br/>
                                                </span>
                                            </td>
                                        </tr>
                                    </table>
                                    <p/>
                                    <table class="grid dict">
                                        <tr>
                                            <td>
                                                <b>Evaluated Resource: </b>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td style="padding-left: 25px; padding-right: 25px;">
                                                <span style="padding-left: 25px;">
                                                  <b>reference: </b>
                                                  <span>Condition/example</span>
                                                  <br/>
                                                </span>
                                            </td>
                                        </tr>
                                    </table>
                                </div>
                            </text>
                            <contained>
                                <Organization>
                                    <id value="reporter"/>
                                    <name value="Good Health Hospital"/>
                                </Organization>
                            </contained>
                            <identifier>
                                <value value="measurereport-cms146-cat1-example-2017-03-13"/>
                            </identifier>
                            <status value="complete"/>
                            <type value="individual"/>
                            <measure value="http://example.org/fhir/Measure/CMS146"/>
                            <subject>
                                <reference value="Patient/124"/>
                            </subject>
                            <date value="2014-04-01"/>
                            <reporter>
                                <reference value="#reporter"/>
                            </reporter>
                            <period>
                                <start value="2014-01-01"/>
                                <end value="2014-03-31"/>
                            </period>
                            <group>
                                <linkId value="CMS146-group-1"/>
                                <scoring>
                                    <coding>
                                        <system
                                            value="http://terminology.hl7.org/CodeSystem/measure-scoring"/>
                                        <code value="proportion"/>
                                    </coding>
                                </scoring>
                                <improvementNotation>
                                    <coding>
                                        <system
                                            value="http://terminology.hl7.org/CodeSystem/measure-improvement-notation"/>
                                        <code value="increase"/>
                                    </coding>
                                </improvementNotation>
                                <population>
                                    <linkId value="CMS146-group-1-ip"/>
                                    <code>
                                        <coding>
                                            <code value="initial-population"/>
                                        </coding>
                                    </code>
                                    <count value="1"/>
                                </population>
                                <population>
                                    <linkId value="CMS146-group-1-num"/>
                                    <code>
                                        <coding>
                                            <code value="numerator"/>
                                        </coding>
                                    </code>
                                    <count value="1"/>
                                </population>
                                <population>
                                    <linkId value="CMS146-group-1-den"/>
                                    <code>
                                        <coding>
                                            <code value="denominator"/>
                                        </coding>
                                    </code>
                                    <count value="1"/>
                                </population>
                                <population>
                                    <linkId value="CMS146-group-1-denex"/>
                                    <code>
                                        <coding>
                                            <code value="denominator-exclusion"/>
                                        </coding>
                                    </code>
                                    <count value="0"/>
                                </population>
                                <measureScoreQuantity>
                                    <value value="1.0"/>
                                </measureScoreQuantity>
                                <stratifier>
                                    <linkId value="CMS146-group-1-stratifier-ages-up-to-9"/>
                                    <code>
                                        <text value="stratifier-ages-up-to-9"/>
                                    </code>
                                    <stratum>
                                        <valueBoolean value="true"/>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="initial-population"/>
                                                </coding>
                                            </code>
                                            <count value="1"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="numerator"/>
                                                </coding>
                                            </code>
                                            <count value="1"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator"/>
                                                </coding>
                                            </code>
                                            <count value="1"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator-exclusion"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                    </stratum>
                                    <stratum>
                                        <valueBoolean value="false"/>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="initial-population"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="numerator"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator-exclusion"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                    </stratum>
                                </stratifier>
                                <stratifier>
                                    <linkId value="CMS146-group-1-stratifier-ages-10-plus"/>
                                    <code>
                                        <text value="stratifier-ages-10-plus"/>
                                    </code>
                                    <stratum>
                                        <valueBoolean value="true"/>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="initial-population"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="numerator"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator-exclusion"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                    </stratum>
                                    <stratum>
                                        <valueBoolean value="true"/>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="initial-population"/>
                                                </coding>
                                            </code>
                                            <count value="1"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="numerator"/>
                                                </coding>
                                            </code>
                                            <count value="1"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator"/>
                                                </coding>
                                            </code>
                                            <count value="1"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator-exclusion"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                    </stratum>
                                </stratifier>
                                <stratifier>
                                    <linkId value="CMS146-group-1-stratifier-gender"/>
                                    <code>
                                        <text value="stratifier-gender"/>
                                    </code>
                                    <stratum>
                                        <valueCodeableConcept>
                                            <text value="male"/>
                                        </valueCodeableConcept>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="initial-population"/>
                                                </coding>
                                            </code>
                                            <count value="1"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="numerator"/>
                                                </coding>
                                            </code>
                                            <count value="1"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator"/>
                                                </coding>
                                            </code>
                                            <count value="1"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator-exclusion"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                    </stratum>
                                    <stratum>
                                        <valueCodeableConcept>
                                            <text value="female"/>
                                        </valueCodeableConcept>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="initial-population"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="numerator"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator-exclusion"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                    </stratum>
                                    <stratum>
                                        <valueCodeableConcept>
                                            <text value="other"/>
                                        </valueCodeableConcept>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="initial-population"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="numerator"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator-exclusion"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                    </stratum>
                                    <stratum>
                                        <valueCodeableConcept>
                                            <text value="unknown"/>
                                        </valueCodeableConcept>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="initial-population"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="numerator"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                        <population>
                                            <code>
                                                <coding>
                                                  <code value="denominator-exclusion"/>
                                                </coding>
                                            </code>
                                            <count value="0"/>
                                        </population>
                                    </stratum>
                                </stratifier>
                            </group>
                            <evaluatedResource>
                                <!-- Condition #example is a condition that was considered in evaluating the measure for Patient #124 -->
                                <reference value="Condition/example"/>
                            </evaluatedResource>
                        </MeasureReport>
                    </resource>
                </entry>
                <entry>
                    <resource>
                        <Measure>
                            <id value="CMS146"/>
                            ...
                        </Measure>
                    </resource>
                </entry>
                <entry>
                    <resource>
                        <Organization>
                            <id value="reporter"/>
                            <name value="Good Health Hospital"/>
                        </Organization>
                    </resource>
                </entry>
                <entry>
                    <resource>
                        <Patient>
                            <id value="124"/>
                            ... 
                        </Patient>
                    </resource>
                </entry>
                <entry>
                    <resource>
                        <Condition>
                            <id value="example"/>
                            ...
                        </Condition>
                    </resource>
                </entry>
            </Bundle>
        </resource>
    </parameter>
</Parameters>

 

For more information about operations, including how they are invoked, see Operations.