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:Communication;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "negation-example"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-communicationnotdone";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-communicationnotdone> ]
];
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><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-qicore-communicationnotdone.html\">QICoreCommunicationNotDone</a></p></div><p><b>QICoreNotDoneRecorded</b>: 2014-12-12T18:01:10-08:00</p><p><b>status</b>: not-done</p><p><b>statusReason</b>: Patient has moved away (finding) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#184081006)</span></p><p><b>category</b>: Alert <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (messagetypes#Alert)</span></p><p><b>medium</b>: written <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/3.0.0/CodeSystem-v3-ParticipationMode.html\">ParticipationMode</a>#WRITTEN)</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>sent</b>: 2014-12-12T18:01:10-08:00</p><p><b>received</b>: 2014-12-12T18:01:11-08:00</p><p><b>recipient</b>: <a href=\"Practitioner-example.html\">Practitioner/example</a> \" CAREFUL\"</p><p><b>sender</b>: <a href=\"Device-example.html\">Device/example</a></p><p><b>reasonCode</b>: Benign essential hypertension <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#1201005)</span></p><h3>Payloads</h3><table class=\"grid\"><tr><td>-</td><td><b>Content[x]</b></td></tr><tr><td>*</td><td>Patient 1 has moved away</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 "2014-12-12T18:01:10-08:00"^^xsd:dateTime ]
];
fhir:Communication.status [ fhir:value "not-done"];
fhir:Communication.statusReason [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:184081006;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "184081006" ];
fhir:Coding.display [ fhir:value "Patient has moved away (finding)" ] ]
];
fhir:Communication.category [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://acme.org/messagetypes" ];
fhir:Coding.code [ fhir:value "Alert" ] ];
fhir:CodeableConcept.text [ fhir:value "Alert" ]
];
fhir:Communication.medium [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ParticipationMode" ];
fhir:Coding.code [ fhir:value "WRITTEN" ];
fhir:Coding.display [ fhir:value "written" ] ];
fhir:CodeableConcept.text [ fhir:value "written" ]
];
fhir:Communication.subject [
fhir:Reference.reference [ fhir:value "Patient/example" ]
];
fhir:Communication.encounter [
fhir:Reference.reference [ fhir:value "Encounter/example" ]
];
fhir:Communication.sent [ fhir:value "2014-12-12T18:01:10-08:00"^^xsd:dateTime];
fhir:Communication.received [ fhir:value "2014-12-12T18:01:11-08:00"^^xsd:dateTime];
fhir:Communication.recipient [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Practitioner/example" ]
];
fhir:Communication.sender [
fhir:Reference.reference [ fhir:value "Device/example" ]
];
fhir:Communication.reasonCode [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:1201005;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "1201005" ];
fhir:Coding.display [ fhir:value "Benign essential hypertension" ] ]
];
fhir:Communication.payload [
fhir:index 0;
fhir:Communication.payload.contentString [ fhir:value "Patient 1 has moved away" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.