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

Generated Narrative

Resource "medrx002"

identifier: id: 12345 (OFFICIAL)

status: active

intent: order

medication: Medication/med0316: prescribed medication

subject: Patient/pat1: Donald Duck "Duck DONALD"

encounter: Encounter/f001: encounter that leads to this prescription

authoredOn: 2015-03-01

requester: Practitioner/f007: Patrick Pump "Simone HEPS"

reasonCode: Essential hypertension (disorder) (SNOMED CT#59621000)

" ]; fhir:MedicationRequest.identifier [ fhir:index 0; fhir:Identifier.use [ fhir:value "official" ]; fhir:Identifier.system [ fhir:value "http://www.bmc.nl/portal/prescriptions" ]; fhir:Identifier.value [ fhir:value "12345" ] ]; fhir:MedicationRequest.status [ fhir:value "active"]; fhir:MedicationRequest.intent [ fhir:value "order"]; fhir:MedicationRequest.medicationReference [ fhir:link ; fhir:Reference.reference [ fhir:value "Medication/med0316" ]; fhir:Reference.display [ fhir:value "prescribed medication" ] ]; fhir:MedicationRequest.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/pat1" ]; fhir:Reference.display [ fhir:value "Donald Duck" ] ]; fhir:MedicationRequest.encounter [ fhir:link ; fhir:Reference.reference [ fhir:value "Encounter/f001" ]; fhir:Reference.display [ fhir:value "encounter that leads to this prescription" ] ]; fhir:MedicationRequest.authoredOn [ fhir:value "2015-03-01"^^xsd:date]; fhir:MedicationRequest.requester [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/f007" ]; fhir:Reference.display [ fhir:value "Patrick Pump" ] ]; fhir:MedicationRequest.reasonCode [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; a sct:59621000; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "59621000" ]; fhir:Coding.display [ fhir:value "Essential hypertension (disorder)" ] ] ]; fhir:MedicationRequest.dosageInstruction [ fhir:index 0; fhir:Dosage.sequence [ fhir:value "1"^^xsd:integer ]; fhir:Dosage.text [ fhir:value "Take one tablet daily as directed" ] ] . a fhir:Medication . a fhir:Patient . a fhir:Encounter . a fhir:Practitioner . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------