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
@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:Encounter; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "qicore-encounter-example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p>\n <strong>staus</strong>: in-progress \n </p>\n <p>\n <strong>class</strong>: { FHIR code 'IMP' = 'inpatient encounter' }) \n </p>\n <p>\n <strong>subject</strong>: \n <a href=\"Patient-qicore-patient-example.html\">Patient/example</a>\n </p>\n </div>" ]; fhir:Encounter.status [ fhir:value "in-progress"]; fhir:Encounter.class [ fhir:Coding.system [ fhir:value "http://hl7.org/fhir/v3/ActCode" ]; fhir:Coding.code [ fhir:value "IMP" ]; fhir:Coding.display [ fhir:value "inpatient encounter" ] ]; fhir:Encounter.subject [ fhir:Reference.reference [ fhir:value "Patient/qicore-patient-example" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.