@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Flag; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example-encounter"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
Follow Infection Control Level 3 Protocol
" ]; fhir:Flag.status [ fhir:value "active"]; fhir:Flag.category [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://example.org/local" ]; fhir:Coding.code [ fhir:value "infection" ]; fhir:Coding.display [ fhir:value "Infection Control Level" ] ] ]; fhir:Flag.code [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://example.org/local/if1" ]; fhir:Coding.code [ fhir:value "l3" ]; fhir:Coding.display [ fhir:value "Follow Level 3 Protocol" ] ] ]; fhir:Flag.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ]; fhir:Reference.display [ fhir:value "Peter Patient" ] ]; fhir:Flag.encounter [ fhir:link ; fhir:Reference.reference [ fhir:value "Encounter/example" ] ] . a fhir:Patient . a fhir:Encounter . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------