This page is part of the Common Data Models Harmonization FHIR IG (v1.0.0: STU 1) based on FHIR R4. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
@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:MedicationDispense;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "example"];
fhir:Resource.meta [
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-name" ];
fhir:Extension.valueString [ fhir:value "MedicationDispense Example" ] ], [
fhir:index 1;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-description" ];
fhir:Extension.valueMarkdown [ fhir:value "This is an example for the *CDMH MedicationDispense Profile*." ] ];
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-medicationdispense";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-medicationdispense> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>MedicationDispense Example</b></p>"
];
fhir:MedicationDispense.status [ fhir:value "in-progress"];
fhir:MedicationDispense.medicationCodeableConcept [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://www.nlm.nih.gov/research/umls/rxnorm" ];
fhir:Coding.code [ fhir:value "226827" ];
fhir:Coding.display [ fhir:value "azithromycin 500 MG Oral Tablet [Zithromax]" ] ]
];
fhir:MedicationDispense.subject [
fhir:Reference.reference [ fhir:value "Patient/example" ]
];
fhir:MedicationDispense.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
fhir:Coding.code [ fhir:value "TF" ];
fhir:Coding.display [ fhir:value "trial Fill" ] ]
];
fhir:MedicationDispense.quantity [
fhir:Quantity.value [ fhir:value "5"^^xsd:decimal ];
fhir:Quantity.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm" ];
fhir:Quantity.code [ fhir:value "TAB" ]
];
fhir:MedicationDispense.daysSupply [
fhir:Quantity.value [ fhir:value "5"^^xsd:decimal ];
fhir:Quantity.unit [ fhir:value "Day" ];
fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
fhir:Quantity.code [ fhir:value "d" ]
];
fhir:MedicationDispense.whenPrepared [ fhir:value "2015-01-15T10:20:00Z"^^xsd:dateTime];
fhir:MedicationDispense.dosageInstruction [
fhir:index 0;
fhir:Dosage.sequence [ fhir:value "1"^^xsd:integer ];
fhir:Dosage.text [ fhir:value "500mg daily for 5 days" ];
fhir:Dosage.additionalInstruction [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:421984009;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "421984009" ];
fhir:Coding.display [ fhir:value "Until finished - dosing instruction fragment (qualifier value)" ] ] ];
fhir:Dosage.timing [
fhir:Timing.repeat [
fhir:Timing.repeat.frequency [ fhir:value "1"^^xsd:positiveInteger ];
fhir:Timing.repeat.period [ fhir:value "1"^^xsd:decimal ];
fhir:Timing.repeat.periodUnit [ fhir:value "d" ] ] ];
fhir:Dosage.route [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:26643006;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "26643006" ];
fhir:Coding.display [ fhir:value "Oral Route (qualifier value)" ] ] ];
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 "500"^^xsd:decimal ];
fhir:Quantity.unit [ fhir:value "mg" ];
fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
fhir:Quantity.code [ fhir:value "mg" ] ] ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.