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
Real-world prescription example
@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/f201> a fhir:MedicationOrder; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "f201"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ] ]; fhir:MedicationOrder.status [ fhir:value "active"]; fhir:MedicationOrder.medicationReference [ fhir:reference <http://hl7.org/fhir/Medication/f201>; fhir:Reference.reference [ fhir:value "Medication/f201" ]; fhir:Reference.display [ fhir:value "25ug Salmeterol + 250ug Fluticasone" ] ]; fhir:MedicationOrder.patient [ fhir:reference <http://hl7.org/fhir/Patient/f201>; fhir:Reference.reference [ fhir:value "Patient/f201" ]; fhir:Reference.display [ fhir:value "Roel" ] ]; fhir:MedicationOrder.dateWritten [ fhir:value "2013-03-11"^^xs:date]; fhir:MedicationOrder.prescriber [ fhir:reference <http://hl7.org/fhir/Practitioner/f201>; fhir:Reference.reference [ fhir:value "Practitioner/f201" ]; fhir:Reference.display [ fhir:value "Dokter Bonsig" ] ]; fhir:MedicationOrder.reasonReference [ fhir:index 0; fhir:reference <http://hl7.org/fhir/Condition/f201>; fhir:Reference.reference [ fhir:value "Condition/f201" ]; fhir:Reference.display [ fhir:value "fever" ] ]; fhir:MedicationOrder.dosageInstruction [ fhir:index 0; fhir:MedicationOrder.dosageInstruction.text [ fhir:value "aerosol 25/250ug/do 120do 2x - 1 dose - daily" ]; fhir:MedicationOrder.dosageInstruction.timing [ fhir:Timing.repeat [ fhir:Timing.repeat.boundsPeriod [ fhir:Period.start [ fhir:value "2013-03-11"^^xs:date ]; fhir:Period.end [ fhir:value "2013-05-11"^^xs:date ] ]; fhir:Timing.repeat.frequency [ fhir:value "2"^^xs:int ]; fhir:Timing.repeat.period [ fhir:value "1"^^xs:decimal ]; fhir:Timing.repeat.periodUnit [ fhir:value "d" ] ] ]; fhir:MedicationOrder.dosageInstruction.siteCodeableConcept [ a sct:74262004; fhir:CodeableConcept.coding [ fhir:index 0; a sct:74262004; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "74262004" ]; fhir:Coding.display [ fhir:value "Oral cavity" ] ] ]; fhir:MedicationOrder.dosageInstruction.route [ a sct:321667001; fhir:CodeableConcept.coding [ fhir:index 0; a sct:321667001; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "321667001" ]; fhir:Coding.display [ fhir:value "Respiratory tract" ] ] ]; fhir:MedicationOrder.dosageInstruction.method [ a sct:320276009; fhir:CodeableConcept.coding [ fhir:index 0; a sct:320276009; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "320276009" ]; fhir:Coding.display [ fhir:value "Salmeterol+fluticasone 25/250ug inhaler" ] ] ]; fhir:MedicationOrder.dosageInstruction.doseQuantity [ fhir:Quantity.value [ fhir:value "1"^^xs:decimal ]; fhir:Quantity.system [ fhir:value "http://hl7.org/fhir/v3/orderableDrugForm" ]; fhir:Quantity.code [ fhir:value "PUFF" ] ]; fhir:MedicationOrder.dosageInstruction.maxDosePerPeriod [ fhir:Ratio.numerator [ fhir:Quantity.value [ fhir:value "2"^^xs:decimal ]; fhir:Quantity.unit [ fhir:value "puffs" ]; fhir:Quantity.system [ fhir:value "http://snomed.info/sct" ]; fhir:Quantity.code [ fhir:value "415215001" ] ]; fhir:Ratio.denominator [ fhir:Quantity.value [ fhir:value "1"^^xs:decimal ]; fhir:Quantity.unit [ fhir:value "daily" ]; fhir:Quantity.system [ fhir:value "http://snomed.info/sct" ]; fhir:Quantity.code [ fhir:value "259032004" ] ] ] ]. # -------------------------------------------------------------------------------------
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.