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

: ProcedureNotDone with code example - TTL Representation

Raw ttl | Download


@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-with-code-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: Procedure</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 Procedure \"negation-with-code-example\" </p></div><p><b>QICoreNotDoneRecorded</b>: 2013-04-05 10:30:00-0400</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>: Graduated compression elastic hosiery (physical object) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT[US]</a>#348681001)</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:CodeableConcept.coding [
       fhir:index 0;
       a sct:348681001;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.version [ fhir:value "http://snomed.info/sct/731000124108" ];
       fhir:Coding.code [ fhir:value "348681001" ];
       fhir:Coding.display [ fhir:value "Graduated compression elastic hosiery (physical object)" ]     ]
  ];
  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.