This page is part of the Specialty Medication Enrollment (v1.0.0: STU1) based on FHIR R4. . 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 xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Bundle;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "specialty-rx-search-response-1-w-include"];
fhir:Bundle.type [ fhir:value "searchset"];
fhir:Bundle.timestamp [ fhir:value "2020-03-11T13:10:17-05:00"^^xsd:dateTime];
fhir:Bundle.total [ fhir:value "1"^^xsd:nonNegativeInteger];
fhir:Bundle.link [
fhir:index 0;
fhir:Bundle.link.relation [ fhir:value "self" ];
fhir:Bundle.link.url [ fhir:value "MedicationRequest?patient=specialty-rx-patient-1&intent=order&_include=MedicationRequest:medication" ]
];
fhir:Bundle.entry [
fhir:index 0;
fhir:Bundle.entry.fullUrl [ fhir:value "http://example.org/MyEHR/MedicationRequest/prescription-1" ];
fhir:Bundle.entry.resource <http://example.org/MyEHR/MedicationRequest/prescription-1>;
fhir:Bundle.entry.search [
fhir:Bundle.entry.search.mode [ fhir:value "match" ] ]
], [
fhir:index 1;
fhir:Bundle.entry.fullUrl [ fhir:value "http://example.org/MyEHR/Medication/11111" ];
fhir:Bundle.entry.resource <http://example.org/MyEHR/Medication/11111>;
fhir:Bundle.entry.search [
fhir:Bundle.entry.search.mode [ fhir:value "include" ] ]
].
<http://example.org/MyEHR/MedicationRequest/prescription-1> a fhir:MedicationRequest;
fhir:Resource.id [ fhir:value "prescription-1"];
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>: stopped</p><p><b>intent</b>: order</p><p><b>medication</b>: <a href=\"#Medication_11111\">See above (Medication/11111)</a></p><p><b>subject</b>: <a href=\"Patient-specialty-rx-patient-1.html\">Generated Summary: id: 1234; active; Timothy V. Doe ; Phone: 555-555-5555, tim.doe@example.com; gender: male; birthDate: 1987-02-20</a></p><p><b>authoredOn</b>: 2020-05-11</p><p><b>requester</b>: <a href=\"http://example.org/MyEHR/Practitioner/specialty-rx-practitioner-1\">http://example.org/MyEHR/Practitioner/specialty-rx-practitioner-1</a></p><blockquote><p><b>dispenseRequest</b></p><p><b>quantity</b>: 4 {each}</p><p><b>performer</b>: <a href=\"http://example.org/MyEHR/Organization/specialty-rx-organization-pharmacy-1\">http://example.org/MyEHR/Organization/specialty-rx-organization-pharmacy-1</a></p></blockquote><h3>Substitutions</h3><table class=\"grid\"><tr><td>-</td><td><b>Allowed[x]</b></td></tr><tr><td>*</td><td>false</td></tr></table></div>"
];
fhir:MedicationRequest.status [ fhir:value "stopped"];
fhir:MedicationRequest.intent [ fhir:value "order"];
fhir:MedicationRequest.medicationReference [
fhir:Reference.reference [ fhir:value "Medication/11111" ]
];
fhir:MedicationRequest.subject [
fhir:Reference.reference [ fhir:value "Patient/specialty-rx-patient-1" ]
];
fhir:MedicationRequest.authoredOn [ fhir:value "2020-05-11"^^xsd:date];
fhir:MedicationRequest.requester [
fhir:link <http://example.org/MyEHR/Practitioner/specialty-rx-practitioner-1>;
fhir:Reference.reference [ fhir:value "http://example.org/MyEHR/Practitioner/specialty-rx-practitioner-1" ]
];
fhir:MedicationRequest.dispenseRequest [
fhir:MedicationRequest.dispenseRequest.quantity [
fhir:Quantity.value [ fhir:value "4"^^xsd:decimal ];
fhir:Quantity.unit [ fhir:value "{each}" ] ];
fhir:MedicationRequest.dispenseRequest.expectedSupplyDuration [
fhir:Quantity.value [ fhir:value "30"^^xsd:decimal ];
fhir:Quantity.unit [ fhir:value "days" ];
fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
fhir:Quantity.code [ fhir:value "d" ] ];
fhir:MedicationRequest.dispenseRequest.performer [
fhir:link <http://example.org/MyEHR/Organization/specialty-rx-organization-pharmacy-1>;
fhir:Reference.reference [ fhir:value "http://example.org/MyEHR/Organization/specialty-rx-organization-pharmacy-1" ] ]
];
fhir:MedicationRequest.substitution [
fhir:MedicationRequest.substitution.allowedBoolean [ fhir:value "false"^^xsd:boolean ]
].
<http://example.org/MyEHR/Medication/11111> a fhir:Medication;
fhir:Resource.id [ fhir:value "11111"];
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>code</b>: <span title=\"Codes: {http://www.nlm.nih.gov/research/umls/rxnorm 802652}\">1 ML Enbrel 50 MG/ML Prefilled Syringe</span></p></div>"
];
fhir:Medication.code [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://www.nlm.nih.gov/research/umls/rxnorm" ];
fhir:Coding.code [ fhir:value "802652" ];
fhir:Coding.display [ fhir:value "1 ML Enbrel 50 MG/ML Prefilled Syringe" ] ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.