@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:CommunicationRequest; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
To be filled out at a later time
" ]; fhir:CommunicationRequest.status [ fhir:value "active"]; fhir:CommunicationRequest.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:CommunicationRequest.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 . # -------------------------------------------------------------------------------------