Quality Measure Implementation Guide

This page is part of the Quality Measure STU2 for FHIR R4 Implementation Guide (v0.1.0: STU 1 Ballot 1) based on FHIR R3. The current version which supercedes this version is 3.0.0. For a full list of available versions, see the Directory of published versions

MeasureImprovementNotation

@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 -------------------------------------------------------------------

 a fhir:CodeSystem;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "improvement-notation"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h2>MeasureImprovementNotation</h2><div><p>Improvement notation for a measure (e.g. increase or decrease)</p>\n</div><p>This code system http://hl7.org/fhir/us/cqfmeasures/CodeSystem/improvement-notation defines the following codes:</p><table class=\"codes\"><tr><td style=\"white-space:nowrap\"><b>Code</b></td><td><b>Display</b></td><td><b>Definition</b></td></tr><tr><td style=\"white-space:nowrap\">increase<a name=\"improvement-notation-increase\"> </a></td><td>Increase</td><td>Improvement is notated as an *increase* in the measure score</td></tr><tr><td style=\"white-space:nowrap\">decrease<a name=\"improvement-notation-decrease\"> </a></td><td>Decrease</td><td>Improvement is notated as a *decrease* in the measure score</td></tr></table></div>"
  ];
  fhir:CodeSystem.url [ fhir:value "http://hl7.org/fhir/us/cqfmeasures/CodeSystem/improvement-notation"];
  fhir:CodeSystem.version [ fhir:value "0.1.0"];
  fhir:CodeSystem.name [ fhir:value "MeasureImprovementNotation"];
  fhir:CodeSystem.status [ fhir:value "draft"];
  fhir:CodeSystem.experimental [ fhir:value "false"^^xsd:boolean];
  fhir:CodeSystem.date [ fhir:value "2019-03-15T16:21:03+11:00"^^xsd:dateTime];
  fhir:CodeSystem.publisher [ fhir:value "Clinical Quality Information Workgroup"];
  fhir:CodeSystem.description [ fhir:value "Improvement notation for a measure (e.g. increase or decrease)"];
  fhir:CodeSystem.jurisdiction [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "urn:iso:std:iso:3166" ];
       fhir:Coding.code [ fhir:value "US" ];
       fhir:Coding.display [ fhir:value "United States of America" ]     ]
  ];
  fhir:CodeSystem.caseSensitive [ fhir:value "true"^^xsd:boolean];
  fhir:CodeSystem.valueSet [ fhir:value "http://hl7.org/fhir/us/cqfmeasures/ValueSet/improvement-notation"];
  fhir:CodeSystem.content [ fhir:value "complete"];
  fhir:CodeSystem.concept [
     fhir:index 0;
     fhir:CodeSystem.concept.code [ fhir:value "increase" ];
     fhir:CodeSystem.concept.display [ fhir:value "Increase" ];
     fhir:CodeSystem.concept.definition [ fhir:value "Improvement is notated as an *increase* in the measure score" ]
  ], [
     fhir:index 1;
     fhir:CodeSystem.concept.code [ fhir:value "decrease" ];
     fhir:CodeSystem.concept.display [ fhir:value "Decrease" ];
     fhir:CodeSystem.concept.definition [ fhir:value "Improvement is notated as a *decrease* in the measure score" ]
  ].

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

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.