This page is part of the Clinical Guidelines (v1.0.0: STU 1) based on FHIR R4. This is the current published version in it's permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
Formats: Narrative, XML, JSON, Turtle
Raw ttl
@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/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:MedicationRequest;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "am-scenario7"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>status</b>: active</p><p><b>intent</b>: order</p><p><b>priority</b>: routine</p><p><b>medication</b>: <span title=\"Codes: {http://snomed.info/sct 333919005}\">Fentanyl 25micrograms/hour patch (product)</span></p><p><b>subject</b>: <a href=\"Patient-am-scenario7.html\">Generated Summary: active; Example Patient; gender: female; birthDate: 1990-10-01; </a></p><h3>DosageInstructions</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><blockquote><p><b>dispenseRequest</b></p><p><b>validityPeriod</b>: 2015-01-15 --> 2016-01-15</p><p><b>quantity</b>: 6 patch</p><h3>ExpectedSupplyDurations</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table></blockquote></div>"
];
fhir:MedicationRequest.status [ fhir:value "active"];
fhir:MedicationRequest.intent [ fhir:value "order"];
fhir:MedicationRequest.priority [ fhir:value "routine"];
fhir:MedicationRequest.medicationCodeableConcept [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:333919005;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "333919005" ];
fhir:Coding.display [ fhir:value "Fentanyl 25micrograms/hour patch (product)" ] ]
];
fhir:MedicationRequest.subject [
fhir:Reference.reference [ fhir:value "Patient/am-scenario7" ]
];
fhir:MedicationRequest.dosageInstruction [
fhir:index 0;
fhir:Dosage.sequence [ fhir:value "1"^^xsd:integer ];
fhir:Dosage.text [ fhir:value "apply one patch three times per week" ];
fhir:Dosage.timing [
fhir:Timing.repeat [
fhir:Timing.repeat.frequency [ fhir:value "3"^^xsd:positiveInteger ];
fhir:Timing.repeat.period [ fhir:value "1"^^xsd:decimal ];
fhir:Timing.repeat.periodUnit [ fhir:value "wk" ] ] ];
fhir:Dosage.doseAndRate [
fhir:index 0;
fhir:Dosage.doseAndRate.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/dose-rate-type" ];
fhir:Coding.code [ fhir:value "ordered" ];
fhir:Coding.display [ fhir:value "Ordered" ] ] ];
fhir:Dosage.doseAndRate.doseQuantity [
fhir:Quantity.value [ fhir:value "1"^^xsd:decimal ];
fhir:Quantity.unit [ fhir:value "patch" ];
fhir:Quantity.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm" ];
fhir:Quantity.code [ fhir:value "PATCH" ] ] ]
];
fhir:MedicationRequest.dispenseRequest [
fhir:MedicationRequest.dispenseRequest.validityPeriod [
fhir:Period.start [ fhir:value "2015-01-15"^^xsd:date ];
fhir:Period.end [ fhir:value "2016-01-15"^^xsd:date ] ];
fhir:MedicationRequest.dispenseRequest.quantity [
fhir:Quantity.value [ fhir:value "6"^^xsd:decimal ];
fhir:Quantity.unit [ fhir:value "patch" ];
fhir:Quantity.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm" ];
fhir:Quantity.code [ fhir:value "PATCH" ] ];
fhir:MedicationRequest.dispenseRequest.expectedSupplyDuration [
fhir:Quantity.value [ fhir:value "14"^^xsd:decimal ];
fhir:Quantity.unit [ fhir:value "days" ];
fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
fhir:Quantity.code [ fhir:value "d" ] ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.