ShiftPrivacyExamples, published by SHIFT-Task-Force. This guide is not an authorized publication; it is the continuous build for version 0.0.1 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/SHIFT-Task-Force/demo-fhir-data/ and changes regularly. See the Directory of published versions
: MedicationRequest - Ibuprofen for Carl Frederickson - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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:id [ fhir:v "CarlFredericksonIbuprofen"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: MedicationRequest CarlFredericksonIbuprofen</b></p><a name=\"CarlFredericksonIbuprofen\"> </a><a name=\"hcCarlFredericksonIbuprofen\"> </a><p><b>identifier</b>: <code>http://example.com/demo/medication-identifier</code>/IBPROFEN-45678</p><p><b>status</b>: Draft</p><p><b>intent</b>: Order</p><p><b>medication</b>: <span title=\"Codes:{http://www.nlm.nih.gov/research/umls/rxnorm 5640}\">ibuprofen</span></p><p><b>subject</b>: <a href=\"Patient-CarlFrederickson.html\">Carl Frederickson Male, DoB: 1950-04-22</a></p><blockquote><p><b>dosageInstruction</b></p><p><b>text</b>: 800mg by mouth three times a day as needed for pain</p><p><b>timing</b>: 3 per 1 day</p><p><b>asNeeded</b>: true</p><h3>DoseAndRates</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Dose[x]</b></td></tr><tr><td style=\"display: none\">*</td><td>800 mg<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM codemg = 'mg')</span></td></tr></table></blockquote></div>"^^rdf:XMLLiteral
] ; #
fhir:identifier ( [
fhir:system [ fhir:v "http://example.com/demo/medication-identifier"^^xsd:anyURI ] ;
fhir:value [ fhir:v "IBPROFEN-45678" ]
] ) ; #
fhir:status [ fhir:v "draft"] ; #
fhir:intent [ fhir:v "order"] ; #
fhir:medication [
a fhir:CodeableConcept ;
( fhir:coding [
fhir:system [ fhir:v "http://www.nlm.nih.gov/research/umls/rxnorm"^^xsd:anyURI ] ;
fhir:code [ fhir:v "5640" ] ] )
] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/CarlFrederickson" ]
] ; #
fhir:dosageInstruction ( [
fhir:text [ fhir:v "800mg by mouth three times a day as needed for pain" ] ;
fhir:timing [
fhir:repeat [
fhir:frequency [ fhir:v "3"^^xsd:positiveInteger ] ;
fhir:period [ fhir:v "1"^^xsd:decimal ] ;
fhir:periodUnit [ fhir:v "d" ] ] ] ;
fhir:asNeeded [
a fhir:boolean ;
fhir:v true ] ;
( fhir:doseAndRate [
fhir:dose [
a fhir:Quantity ;
fhir:value [ fhir:v "800"^^xsd:decimal ] ;
fhir:unit [ fhir:v "mg" ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "mg" ] ] ] )
] ) . #