Quality Measure Implementation Guide
2.0.0-cibuild - CI Build International flag

Quality Measure Implementation Guide, published by HL7 International / Clinical Quality Information. This guide is not an authorized publication; it is the continuous build for version 2.0.0-cibuild built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-cqm/ and changes regularly. See the Directory of published versions

: Reporting Program Subscription listener

Page standards status: Informative

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Subscription/covid-reporting-changes> a fhir:Subscription ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "covid-reporting-changes"] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Subscription covid-reporting-changes</b></p><a name=\"covid-reporting-changes\"> </a><a name=\"hccovid-reporting-changes\"> </a><p><b>status</b>: Requested</p><p><b>contact</b>: ph: 555-555-5555</p><p><b>end</b>: 2027-01-01 00:00:00+0000</p><p><b>reason</b>: ACME hospital to listen of changes tothe CDC Covid Reporting Program</p><p><b>criteria</b>: Measure?url=http://example.org/fhir/Measure/BedCapacityMeasureMonthly</p><h3>Channels</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Type</b></td><td><b>Endpoint</b></td><td><b>Payload</b></td><td><b>Header</b></td></tr><tr><td style=\"display: none\">*</td><td>Rest Hook</td><td><a href=\"https://example.org/fhir/updates/measures\">https://example.org/fhir/updates/measures</a></td><td>application/fhir+json</td><td>Authorization: Bearer secret-token-abc-123</td></tr></table></div>"
  ] ;
  fhir:Subscription.status [ fhir:value "requested"] ;
  fhir:Subscription.contact [
     fhir:index -1 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "555-555-5555" ]
  ] ;
  fhir:Subscription.end [ fhir:value "2027-01-01T00:00:00Z"^^xsd:dateTime] ;
  fhir:Subscription.reason [ fhir:value "ACME hospital to listen of changes tothe CDC Covid Reporting Program"] ;
  fhir:Subscription.criteria [ fhir:value "Measure?url=http://example.org/fhir/Measure/BedCapacityMeasureMonthly"] ;
  fhir:Subscription.channel [
     fhir:Subscription.channel.type [ fhir:value "rest-hook" ] ;
     fhir:Subscription.channel.endpoint [ fhir:value "https://example.org/fhir/updates/measures" ] ;
     fhir:Subscription.channel.payload [ fhir:value "application/fhir+json" ] ;
     fhir:Subscription.channel.header [
       fhir:value "Authorization: Bearer secret-token-abc-123" ;
       fhir:index -1
     ]
  ] .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Subscription/covid-reporting-changes.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Subscription/covid-reporting-changes.ttl> .