@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Encounter; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
Encounter with patient @example
" ]; fhir:Encounter.status [ fhir:value "in-progress"]; fhir:Encounter.class [ fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ]; fhir:Coding.code [ fhir:value "IMP" ]; fhir:Coding.display [ fhir:value "inpatient encounter" ] ]; fhir:Encounter.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ] ] . a fhir:Patient . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------