QI-Core Implementation Guide
5.0.0-ballot - STU Ballot
US
This page is part of the Quality Improvement Core Framework (v5.0.0-ballot: STU 5 Ballot 1) based on FHIR R4. The current version which supercedes this version is 4.1.1. For a full list of available versions, see the Directory of published versions
Draft as of 2018-08-22 |
@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:ValueSet;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "qicore-appropriateness-score"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/StructureDefinition/shareablevalueset";
fhir:index 0;
fhir:link <http://hl7.org/fhir/StructureDefinition/shareablevalueset> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <h2>QICoreAppropriatenessScore</h2>\n <p>The RAND scoring for appropriateness of the procedure.</p>\n <p>This value set has an inline code system which defines the following codes:</p>\n <table class=\"codes\">\n <tr>\n <td>\n <strong>Code</strong>\n </td>\n <td>\n <strong>Display</strong>\n </td>\n <td>\n <strong>Definition</strong>\n </td>\n </tr>\n <tr>\n <td>extremely-inappropriate\n <a name=\"extremely-inappropriate\"> </a>\n </td>\n <td>Extremely Inappropriate</td>\n <td>The procedure is extremely inappropriate</td>\n </tr>\n <tr>\n <td>inappropriate\n <a name=\"inappropriate\"> </a>\n </td>\n <td>Inappropriate</td>\n <td>The procedure is inappropriate</td>\n </tr>\n <tr>\n <td>probably-inappropriate\n <a name=\"probably-inappropriate\"> </a>\n </td>\n <td>Probably Inappropriate</td>\n <td>The procedure is probably inappropriate</td>\n </tr>\n <tr>\n <td>uncertain-inappropriate\n <a name=\"uncertain-inappropriate\"> </a>\n </td>\n <td>Uncertain Inappropriate</td>\n <td>The appropriateness of the procedure is uncertain, leaning towards inappropriate</td>\n </tr>\n <tr>\n <td>uncertain\n <a name=\"uncertain\"> </a>\n </td>\n <td>Uncertain</td>\n <td>The appropriateness of the procedure is uncertain</td>\n </tr>\n <tr>\n <td>uncertain-appropriate\n <a name=\"uncertain-appropriate\"> </a>\n </td>\n <td>Uncertain Appropriate</td>\n <td>The appropriateness of the procedure is uncertain, leaning towards appropriate</td>\n </tr>\n <tr>\n <td>probably-appropriate\n <a name=\"probably-appropriate\"> </a>\n </td>\n <td>Probably Appropriate</td>\n <td>The procedure is probably appropriate</td>\n </tr>\n <tr>\n <td>appropriate\n <a name=\"appropriate\"> </a>\n </td>\n <td>Appropriate</td>\n <td>The procedure is appropriate</td>\n </tr>\n <tr>\n <td>extremely-appropriate\n <a name=\"extremely-appropriate\"> </a>\n </td>\n <td>Extremely Appropriate</td>\n <td>The procedure is extremely appropriate</td>\n </tr>\n </table>\n </div>"
];
fhir:ValueSet.url [ fhir:value "http://hl7.org/fhir/us/qicore/ValueSet/qicore-appropriateness-score"];
fhir:ValueSet.version [ fhir:value "5.0.0-ballot"];
fhir:ValueSet.name [ fhir:value "QICoreAppropriatenessScore"];
fhir:ValueSet.title [ fhir:value "RAND Appropriateness Scores"];
fhir:ValueSet.status [ fhir:value "draft"];
fhir:ValueSet.experimental [ fhir:value "false"^^xsd:boolean];
fhir:ValueSet.date [ fhir:value "2018-08-22"^^xsd:date];
fhir:ValueSet.publisher [ fhir:value "http://www.hl7.org/Special/committees/cqi/index.cfm"];
fhir:ValueSet.contact [
fhir:index 0;
fhir:ContactDetail.name [ fhir:value "Clinical Quality Information WG" ];
fhir:ContactDetail.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "url" ];
fhir:ContactPoint.value [ fhir:value "http://www.hl7.org/Special/committees/cqi" ] ]
];
fhir:ValueSet.description [ fhir:value "The RAND scoring for appropriateness of the procedure."];
fhir:ValueSet.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:ValueSet.immutable [ fhir:value "true"^^xsd:boolean];
fhir:ValueSet.compose [
fhir:ValueSet.compose.include [
fhir:index 0;
fhir:ValueSet.compose.include.system [ fhir:value "http://hl7.org/fhir/us/qicore/CodeSystem/appropriateness-score" ] ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.