@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://SHIFT-Task-Force.github.io/demo-fhir-data/MedicationRequest/SteffiRambeau16Albuterol> a fhir:MedicationRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "SteffiRambeau16Albuterol"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: MedicationRequest SteffiRambeau16Albuterol</b></p><a name=\"SteffiRambeau16Albuterol\"> </a><a name=\"hcSteffiRambeau16Albuterol\"> </a><p><b>status</b>: Active</p><p><b>intent</b>: Order</p><p><b>medication</b>: <span title=\"Codes:{http://www.nlm.nih.gov/research/umls/rxnorm 2123072}\">Albuterol 90 mcg/puff 2 puffs INH q4h PRN wheezing</span></p><p><b>subject</b>: <a href=\"Patient-SteffiRambeau16.html\">Mo  Female, DoB: 2009-07-18</a></p><blockquote><p><b>dosageInstruction</b></p><p><b>text</b>: 2 puffs INH q4h PRN wheezing</p><p><b>timing</b>: Once per 4 hours</p><p><b>asNeeded</b>: true</p><p><b>route</b>: <span title=\"Codes:{http://snomed.info/sct 447694001}\">Respiratory tract route</span></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>90 ug<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM  codeug = 'ug')</span></td></tr></table></blockquote></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  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:l <http://www.nlm.nih.gov/research/umls/rxnorm>
       ] ;
       fhir:code [ fhir:v "2123072" ] ;
       fhir:display [ fhir:v "albuterol 90 MCG/ACTUAT Metered Dose Inhaler, 200 Actuations, generic for ProAir" ]
     ] ) ;
     fhir:text [ fhir:v "Albuterol 90 mcg/puff 2 puffs INH q4h PRN wheezing" ]
  ] ; # 
  fhir:subject [
     fhir:l <http://SHIFT-Task-Force.github.io/demo-fhir-data/Patient/SteffiRambeau16> ;
     fhir:reference [ fhir:v "Patient/SteffiRambeau16" ]
  ] ; # 
  fhir:dosageInstruction ( [
     fhir:text [ fhir:v "2 puffs INH q4h PRN wheezing" ] ;
     fhir:timing [
       fhir:repeat [
         fhir:frequency [ fhir:v "1"^^xsd:positiveInteger ] ;
         fhir:period [ fhir:v "4"^^xsd:decimal ] ;
         fhir:periodUnit [ fhir:v "h" ]
       ]
     ] ;
     fhir:asNeeded [
       a fhir:Boolean ;
       fhir:v true
     ] ;
     fhir:route [
       fhir:coding ( [
         a sct:447694001 ;
         fhir:system [
           fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
           fhir:l <http://snomed.info/sct>
         ] ;
         fhir:code [ fhir:v "447694001" ] ;
         fhir:display [ fhir:v "Respiratory tract route" ]
       ] )
     ] ;
     fhir:doseAndRate ( [
       fhir:dose [
         a fhir:Quantity ;
         fhir:value [ fhir:v "90"^^xsd:decimal ] ;
         fhir:unit [ fhir:v "ug" ] ;
         fhir:system [
           fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
           fhir:l <http://unitsofmeasure.org>
         ] ;
         fhir:code [ fhir:v "ug" ]
       ]
     ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

