QI-Core Implementation Guide
4.1.1 - STU 4.1.1
US
This page is part of the Quality Improvement Core Framework (v4.1.1: STU 4) 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
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:CodeSystem;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "diagnosticorder-precondition"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/StructureDefinition/shareablecodesystem";
fhir:index 0;
fhir:link <http://hl7.org/fhir/StructureDefinition/shareablecodesystem> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>This code system http://hl7.org/fhir/us/qicore/CodeSystem/diagnosticorder-precondition 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\">1<a name=\"diagnosticorder-precondition-1\"> </a></td><td>After activity</td><td>The diagnostic test was or should be performed after the patient has engaged in physical activity</td></tr><tr><td style=\"white-space:nowrap\">2<a name=\"diagnosticorder-precondition-2\"> </a></td><td>At rest</td><td>The diagnostic test was or should be performed while the patient is at rest</td></tr><tr><td style=\"white-space:nowrap\">3<a name=\"diagnosticorder-precondition-3\"> </a></td><td>Post-op</td><td>The diagnostic test was or should be performed after the patient operation</td></tr></table></div>"
];
fhir:CodeSystem.url [ fhir:value "http://hl7.org/fhir/us/qicore/CodeSystem/diagnosticorder-precondition"];
fhir:CodeSystem.version [ fhir:value "4.1.1"];
fhir:CodeSystem.name [ fhir:value "DiagnosticOrderPrecondition"];
fhir:CodeSystem.title [ fhir:value "QICore Diagnostic Order Precondition"];
fhir:CodeSystem.status [ fhir:value "draft"];
fhir:CodeSystem.experimental [ fhir:value "false"^^xsd:boolean];
fhir:CodeSystem.date [ fhir:value "2018-08-22"^^xsd:date];
fhir:CodeSystem.publisher [ fhir:value "http://www.hl7.org/Special/committees/cqi/index.cfm"];
fhir:CodeSystem.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:CodeSystem.description [ fhir:value "The condition, state, or problem that the patient is in or has prior to a therapy or procedure. This captures temporal (temporary circumstances) that have bearing on the data that it qualifies but will not necessarily modify its meaning. Things like 'after activity', 'at rest', or 'post-op'. "];
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:CodeSystem.caseSensitive [ fhir:value "true"^^xsd:boolean];
fhir:CodeSystem.content [ fhir:value "complete"];
fhir:CodeSystem.concept [
fhir:index 0;
fhir:CodeSystem.concept.code [ fhir:value "1" ];
fhir:CodeSystem.concept.display [ fhir:value "After activity" ];
fhir:CodeSystem.concept.definition [ fhir:value "The diagnostic test was or should be performed after the patient has engaged in physical activity" ]
], [
fhir:index 1;
fhir:CodeSystem.concept.code [ fhir:value "2" ];
fhir:CodeSystem.concept.display [ fhir:value "At rest" ];
fhir:CodeSystem.concept.definition [ fhir:value "The diagnostic test was or should be performed while the patient is at rest" ]
], [
fhir:index 2;
fhir:CodeSystem.concept.code [ fhir:value "3" ];
fhir:CodeSystem.concept.display [ fhir:value "Post-op" ];
fhir:CodeSystem.concept.definition [ fhir:value "The diagnostic test was or should be performed after the patient operation" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.