QI-Core Implementation Guide
4.1.0 - release
This page is part of the Quality Improvement Core Framework (v4.1.0: STU 4) 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
@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Procedure;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "negation-example"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "extensions" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource \"negation-example\" </p></div><p><b>QICoreNotDoneRecorded</b>: 2013-04-05T10:30:00-04:00</p><p><b>status</b>: not-done</p><p><b>statusReason</b>: Complication of medical care (disorder) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#35688006)</span></p><p><b>code</b>: Excision of appendix (procedure) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ()</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Patient/example</a> \" CHALMERS\"</p><p><b>encounter</b>: <a href=\"Encounter-example.html\">Encounter/example</a></p><p><b>performed</b>: </p><h3>Performers</h3><table class=\"grid\"><tr><td>-</td><td><b>Actor</b></td></tr><tr><td>*</td><td><a href=\"Practitioner-example.html\">Practitioner/example: Dr Cecil Surgeon</a> \" CAREFUL\"</td></tr></table></div>"
];
fhir:DomainResource.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-recorded" ];
fhir:Extension.valueDateTime [ fhir:value "2013-04-05T10:30:00-04:00"^^xsd:dateTime ]
];
fhir:Procedure.status [ fhir:value "not-done"];
fhir:Procedure.statusReason [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:35688006;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "35688006" ];
fhir:Coding.display [ fhir:value "Complication of medical care (disorder)" ] ]
];
fhir:Procedure.code [
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-notDoneValueSet" ];
fhir:Extension.valueCanonical [
fhir:value "http://cts.nlm.nih.gov/fhir/2.16.840.1.113762.1.4.1018.240";
fhir:link <http://cts.nlm.nih.gov/fhir/2.16.840.1.113762.1.4.1018.240> ] ];
fhir:CodeableConcept.text [ fhir:value "Excision of appendix (procedure)" ]
];
fhir:Procedure.subject [
fhir:Reference.reference [ fhir:value "Patient/example" ]
];
fhir:Procedure.encounter [
fhir:Reference.reference [ fhir:value "Encounter/example" ]
];
fhir:Procedure.performedDateTime [
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/data-absent-reason" ];
fhir:Extension.valueCode [ fhir:value "not-performed" ] ]
];
fhir:Procedure.performer [
fhir:index 0;
fhir:Procedure.performer.actor [
fhir:Reference.reference [ fhir:value "Practitioner/example" ];
fhir:Reference.display [ fhir:value "Dr Cecil Surgeon" ] ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.