@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:DeviceRequest; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Generated Narrative

Resource "example"

status: completed

intent: original-order

code: Device/example

subject: Patient/example "Peter CHALMERS"

" ]; fhir:DeviceRequest.status [ fhir:value "completed"]; fhir:DeviceRequest.intent [ fhir:value "original-order"]; fhir:DeviceRequest.codeReference [ fhir:link ; fhir:Reference.reference [ fhir:value "Device/example" ] ]; fhir:DeviceRequest.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ] ] . a fhir:Device . a fhir:Patient . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------