This page is part of the US Core (v4.0.0: STU4) based on FHIR R4. The current version which supercedes this version is 5.0.1. 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:MedicationRequest;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "self-tylenol"];
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 "Self Tylenol Example" ] ], [
fhir:index 1;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-description" ];
fhir:Extension.valueMarkdown [ fhir:value "This is a self tylenol example for the *MedicationRequest Profile*." ] ];
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest> ]
];
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>identifier</b>: id: 12345689 (OFFICIAL)</p><p><b>status</b>: active</p><p><b>intent</b>: plan</p><p><b>reported</b>: true</p><p><b>medication</b>: <span title=\"Codes: {http://www.nlm.nih.gov/research/umls/rxnorm 1187314}\">Tylenol PM Pill</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Amy V. Shaw. Generated Summary: Medical Record Number: 1032702 (USUAL); active; Amy V. Shaw , Amy V. Baxter ; Phone: 555-555-5555, amy.shaw@example.com; gender: female; birthDate: 1987-02-20</a></p><p><b>encounter</b>: <a href=\"Encounter-example-1.html\">Office Visit. Generated Summary: status: finished; <span title=\"{http://terminology.hl7.org/CodeSystem/v3-ActCode AMB}\">ambulatory</span>; <span title=\"Codes: {http://www.ama-assn.org/go/cpt 99201}\">Office Visit</span>; period: Nov 1, 2015 10:00:14 PM --> Nov 1, 2015 11:00:14 PM</a></p><p><b>authoredOn</b>: 2019-06-24</p><p><b>requester</b>: <a href=\"Patient-example.html\">**self-prescribed**. Generated Summary: Medical Record Number: 1032702 (USUAL); active; Amy V. Shaw , Amy V. Baxter ; Phone: 555-555-5555, amy.shaw@example.com; gender: female; birthDate: 1987-02-20</a></p></div>"
];
fhir:MedicationRequest.identifier [
fhir:index 0;
fhir:Identifier.use [ fhir:value "official" ];
fhir:Identifier.system [ fhir:value "http://acme.org/prescriptions" ];
fhir:Identifier.value [ fhir:value "12345689" ]
];
fhir:MedicationRequest.status [ fhir:value "active"];
fhir:MedicationRequest.intent [ fhir:value "plan"];
fhir:MedicationRequest.reportedBoolean [ fhir:value "true"^^xsd:boolean];
fhir:MedicationRequest.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 "1187314" ];
fhir:Coding.display [ fhir:value "Tylenol PM Pill" ] ];
fhir:CodeableConcept.text [ fhir:value "Tylenol PM Pill" ]
];
fhir:MedicationRequest.subject [
fhir:Reference.reference [ fhir:value "Patient/example" ];
fhir:Reference.display [ fhir:value "Amy V. Shaw" ]
];
fhir:MedicationRequest.encounter [
fhir:Reference.reference [ fhir:value "Encounter/example-1" ];
fhir:Reference.display [ fhir:value "Office Visit" ]
];
fhir:MedicationRequest.authoredOn [ fhir:value "2019-06-24"^^xsd:date];
fhir:MedicationRequest.requester [
fhir:Reference.reference [ fhir:value "Patient/example" ];
fhir:Reference.display [ fhir:value "**self-prescribed**" ]
];
fhir:MedicationRequest.dosageInstruction [
fhir:index 0;
fhir:Dosage.text [ fhir:value "Takes 1-2 tablets once daily at bedtime as needed for restless legs" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.