This page is part of the Quality Improvement Core Framework (v2.0.0: STU 2) 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: Flag-qicore-flag-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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:Flag;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "qicore-flag-example"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      <p><strong>Large Dog warning for Peter Patient</strong></p>\n      <p>\n        <strong>identifier</strong>: 12345\n      </p>\n      <p>\n        <strong>status</strong>: inactive\n      </p>\n      <p>\n        <strong>category</strong>: Admin\n      </p>\n      <blockquote>\n        <p><strong>category</strong></p>\n        <p>\n          <strong>coding</strong>: Admin\n        </p>\n        <p>\n          <strong>text</strong>: admin\n        </p>\n      </blockquote>\n      <blockquote>\n        <p><strong>code</strong></p>\n        <p>\n          <strong>coding</strong>: Big dog\n        </p>\n        <p>\n          <strong>text</strong>: Patient has a big dog at his home. Always always wear a suit of armor or take other active counter-measures.\n        </p>\n      </blockquote>\n      <p>\n        <strong>subject</strong>: \n        <a href=\"Patient-qicore-patient-example.html\">Patient/example</a>\n      </p>\n      <blockquote>\n        <p><strong>period</strong></p>\n        <p>\n          <strong>start</strong>: 01/17/2015\n        </p>\n        <p>\n          <strong>end</strong>: 12/01/2016\n        </p>\n      </blockquote>\n      <p>\n        <strong>author</strong>: \n        <a href=\"Practitioner-qicore-practitioner-example.html\">Practitioner/example</a>\n      </p>\n    </div>"
  ];
  fhir:Flag.identifier [
     fhir:index 0;
     fhir:Identifier.value [ fhir:value "12345" ]
  ];
  fhir:Flag.status [ fhir:value "inactive"];
  fhir:Flag.category [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://example.org/local" ];
       fhir:Coding.code [ fhir:value "admin" ];
       fhir:Coding.display [ fhir:value "Admin" ]     ];
     fhir:CodeableConcept.text [ fhir:value "admin" ]
  ];
  fhir:Flag.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://example.org/local" ];
       fhir:Coding.code [ fhir:value "bigdog" ];
       fhir:Coding.display [ fhir:value "Big dog" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Patient has a big dog at his home. Always always wear a suit of armor or take other active      counter-measures" ]
  ];
  fhir:Flag.subject [
     fhir:Reference.reference [ fhir:value "Patient/qicore-patient-example" ];
     fhir:Reference.display [ fhir:value "Peter Patient" ]
  ];
  fhir:Flag.period [
     fhir:Period.start [ fhir:value "2015-01-17"^^xsd:date ];
     fhir:Period.end [ fhir:value "2016-12-01"^^xsd:date ]
  ];
  fhir:Flag.author [
     fhir:Reference.reference [ fhir:value "Practitioner/qicore-practitioner-example" ];
     fhir:Reference.display [ fhir:value "Nancy Nurse" ]
  ].

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

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