@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Flag; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
Large Dog warning for Peter Patient
" ]; fhir:Flag.identifier [ fhir:index 0; fhir:Identifier.value [ fhir:value "12345" ] ]; fhir:Flag.status [ fhir:value "inactive"]; fhir:Flag.category [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/flag-category" ]; fhir:Coding.code [ fhir:value "safety" ]; fhir:Coding.display [ fhir:value "Safety" ] ]; fhir:CodeableConcept.text [ fhir:value "Safety" ] ]; 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:link ; fhir:Reference.reference [ fhir:value "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:link ; fhir:Reference.reference [ fhir:value "Practitioner/example" ]; fhir:Reference.display [ fhir:value "Nancy Nurse" ] ] . a fhir:Patient . a fhir:Practitioner . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------