Quality Measure Implementation Guide (STU4)
4.0.0 - STU4 United States of America flag

This page is part of the Quality Measure STU2 for FHIR R4 Implementation Guide (v4.0.0: STU4 (v4.0.0)) based on FHIR R4. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions

: Measure Calculation Service Capability Statement Example - JSON Representation

Draft as of 2016-09-16

Raw json | Download


{
  "resourceType" : "CapabilityStatement",
  "id" : "measure-calculation-service-example",
  "meta" : {
    "profile" : [
      "http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/capability-statement-cqfm"
    ]
  },
  "text" : {
    "status" : "extensions",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Placeholder</div>"
  },
  "extension" : [
    {
      "url" : "http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/cqfm-supportedCqlVersion",
      "valueCoding" : {
        "system" : "http://hl7.org/fhir/us/cqfmeasures/CodeSystem/cql-version",
        "code" : "1.5"
      }
    },
    {
      "url" : "http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/cqfm-supportedCqlVersion",
      "valueCoding" : {
        "system" : "http://hl7.org/fhir/us/cqfmeasures/CodeSystem/cql-version",
        "code" : "1.4"
      }
    }
  ],
  "url" : "http://hl7.org/fhir/us/cqfmeasures/CapabilityStatement/measure-calculation-service-example",
  "name" : "MeasureCalculationServiceCapabilityStatementExample",
  "title" : "Measure Calculation Service Capability Statement Example",
  "status" : "draft",
  "date" : "2016-09-16",
  "publisher" : "Clinical Quality Information WG",
  "contact" : [
    {
      "telecom" : [
        {
          "system" : "url",
          "value" : "http://www.hl7.org/Special/committees/cqi"
        }
      ]
    }
  ],
  "description" : "Basic conformance statement for a Measure Calculation Service. A server can support more fucntionality    than defined here, but this is the minimum amount",
  "jurisdiction" : [
    {
      "coding" : [
        {
          "system" : "urn:iso:std:iso:3166",
          "code" : "US"
        }
      ]
    }
  ],
  "kind" : "instance",
  "instantiates" : [
    "http://hl7.org/fhir/knowledge-repository"
  ],
  "software" : {
    "name" : "ACME Measure Calculation Service"
  },
  "implementation" : {
    "description" : "This service supports basic measure repository features as well as measure calculation using the $evaluate-measure operation.",
    "url" : "https://example.org/fhir"
  },
  "fhirVersion" : "4.0.1",
  "format" : [
    "json",
    "xml"
  ],
  "rest" : [
    {
      "mode" : "server",
      "documentation" : "RESTful Measure Calculation Service",
      "security" : {
        "cors" : true,
        "service" : [
          {
            "coding" : [
              {
                "system" : "http://terminology.hl7.org/CodeSystem/restful-security-service",
                "code" : "Certificates"
              }
            ]
          }
        ]
      },
      "resource" : [
        {
          "type" : "Measure",
          "profile" : "http://hl7.org/fhir/StructureDefinition/Measure",
          "interaction" : [
            {
              "code" : "read",
              "documentation" : "Read allows clients to get the logical definitions of the measures"
            },
            {
              "code" : "search-type",
              "documentation" : "Search allows clients to find value sets on the server"
            }
          ],
          "searchParam" : [
            {
              "name" : "description",
              "definition" : "http://hl7.org/fhir/SearchParameter/Measure-description",
              "type" : "string"
            },
            {
              "name" : "identifier",
              "definition" : "http://hl7.org/fhir/SearchParameter/Measure-identifier",
              "type" : "token"
            },
            {
              "name" : "status",
              "definition" : "http://hl7.org/fhir/SearchParameter/Measure-status",
              "type" : "token"
            },
            {
              "name" : "title",
              "definition" : "http://hl7.org/fhir/SearchParameter/Measure-title",
              "type" : "string"
            },
            {
              "name" : "topic",
              "definition" : "http://hl7.org/fhir/SearchParameter/Measure-topic",
              "type" : "token"
            },
            {
              "name" : "version",
              "definition" : "http://hl7.org/fhir/SearchParameter/Measure-version",
              "type" : "token"
            }
          ]
        }
      ],
      "operation" : [
        {
          "name" : "evaluate",
          "definition" : "http://hl7.org/fhir/OperationDefinition/Measure-evaluate-measure"
        }
      ]
    }
  ]
}