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

Generated Narrative

Resource "example3"

status: draft

intent: order

code: Refill Request ()

focus: MedicationRequest/medrx002

for: Patient/f001 "Pieter VAN DE HEUVEL"

authoredOn: 2016-03-10T22:39:32-04:00

lastModified: 2016-03-10T22:39:32-04:00

requester: Patient/example "Peter CHALMERS"

owner: Practitioner/example "Adam CAREFUL"

" ]; fhir:Task.status [ fhir:value "draft"]; fhir:Task.intent [ fhir:value "order"]; fhir:Task.code [ fhir:CodeableConcept.text [ fhir:value "Refill Request" ] ]; fhir:Task.focus [ fhir:link ; fhir:Reference.reference [ fhir:value "MedicationRequest/medrx002" ] ]; fhir:Task.for [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/f001" ] ]; fhir:Task.authoredOn [ fhir:value "2016-03-10T22:39:32-04:00"^^xsd:dateTime]; fhir:Task.lastModified [ fhir:value "2016-03-10T22:39:32-04:00"^^xsd:dateTime]; fhir:Task.requester [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:Task.owner [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/example" ] ] . a fhir:MedicationRequest . a fhir:Patient . a fhir:Patient . a fhir:Practitioner . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------