This page is part of the FHIR Specification (v1.4.0: STU 3 Ballot 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions 
Fully populated dose structure of a prescription in text
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/sct/> .
@prefix xs: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<http://hl7.org/fhir//MedicationOrder/medrx002> a fhir:MedicationOrder;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "medrx002"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ]
];
fhir:MedicationOrder.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:MedicationOrder.status [ fhir:value "active"];
fhir:MedicationOrder.medicationReference [
fhir:reference <http://hl7.org/fhir/Medication/MedicationExample5>;
fhir:Reference.reference [ fhir:value "Medication/MedicationExample5" ];
fhir:Reference.display [ fhir:value "prescribed medication" ]
];
fhir:MedicationOrder.patient [
fhir:reference <http://hl7.org/fhir/Patient/f001>;
fhir:Reference.reference [ fhir:value "Patient/f001" ];
fhir:Reference.display [ fhir:value "Eve Everywoman" ]
];
fhir:MedicationOrder.encounter [
fhir:reference <http://hl7.org/fhir/Encounter/f002>;
fhir:Reference.reference [ fhir:value "Encounter/f002" ];
fhir:Reference.display [ fhir:value "encounter who leads to this prescription" ]
];
fhir:MedicationOrder.dateWritten [ fhir:value "2015-03-01"^^xs:date];
fhir:MedicationOrder.prescriber [
fhir:reference <http://hl7.org/fhir/Practitioner/f007>;
fhir:Reference.reference [ fhir:value "Practitioner/f007" ];
fhir:Reference.display [ fhir:value "Patricia Primary" ]
];
fhir:MedicationOrder.reasonCode [
fhir:index 0;
a sct:64859006;
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:64859006;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "64859006" ];
fhir:Coding.display [ fhir:value "Osteoporosis" ] ]
];
fhir:MedicationOrder.dosageInstruction [
fhir:index 0;
fhir:MedicationOrder.dosageInstruction.text [ fhir:value "Take one tablet daily as directed" ]
].
# -------------------------------------------------------------------------------------
Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.