Qi-Core Implementation Guide (Release 2.1 Trial-Use Ballot)

This page is part of the Quality Improvement Core Framework (v2.1.0: STU 3 Ballot 1) based on FHIR R3. The current version which supercedes this version is 4.1.1. For a full list of available versions, see the Directory of published versions

Example: Procedure-qicore-procedure-example

Formats: XML, JSON, Turtle

@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 "qicore-procedure-example"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated narrative...</div>"
  ];
  fhir:DomainResource.extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/procedure-approachBodySite" ];
     fhir:Extension.valueReference [
       fhir:Reference.reference [ fhir:value "BodySite/qicore-bodysite-example" ]     ]
  ], [
     fhir:index 1;
     fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/procedure-incisionDateTime" ];
     fhir:Extension.valueDateTime [ fhir:value "2013-04-05T09:30:00-04:00"^^xsd:dateTime ]
  ];
  fhir:Procedure.status [ fhir:value "completed"];
  fhir:Procedure.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:80146002;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "80146002" ];
       fhir:Coding.display [ fhir:value "Appendectomy (Procedure)" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Appendectomy" ]
  ];
  fhir:Procedure.subject [
     fhir:Reference.reference [ fhir:value "Patient/qicore-patient-example" ]
  ];
  fhir:Procedure.context [
     fhir:Reference.reference [ fhir:value "Encounter/qicore-encounter-example" ]
  ];
  fhir:Procedure.performedPeriod [
     fhir:Period.start [ fhir:value "2013-04-05T09:20:00-04:00"^^xsd:dateTime ];
     fhir:Period.end [ fhir:value "2013-04-05T10:30:00-04:00"^^xsd:dateTime ]
  ];
  fhir:Procedure.performer [
     fhir:index 0;
     fhir:Procedure.performer.actor [
       fhir:Reference.reference [ fhir:value "Practitioner/qicore-practitioner-example" ];
       fhir:Reference.display [ fhir:value "Dr Cecil Surgeon" ]     ]
  ];
  fhir:Procedure.reasonCode [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:163220003;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "163220003" ];
       fhir:Coding.display [ fhir:value "On examination - abdominal pain - right iliac" ]     ]
  ];
  fhir:Procedure.bodySite [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:66754008;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "66754008" ];
       fhir:Coding.display [ fhir:value "Appendix structure" ]     ]
  ];
  fhir:Procedure.report [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "DiagnosticReport/qicore-diagnosticreport-example" ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.