@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 -------------------------------------------------------------------

<http://hl7.org/fhir/us/dme-orders/MedicationRequest/Insulin> a fhir:MedicationRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Insulin"] ; # 
  fhir:meta [
     fhir:versionId [ fhir:v "1" ] ;
     fhir:lastUpdated [ fhir:v "2020-08-10T01:54:34.412Z"^^xsd:dateTime ] ;
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/dme-orders/StructureDefinition/PAOX-medication-request"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/dme-orders/StructureDefinition/PAOX-medication-request>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: MedicationRequest</b><a name=\"Insulin\"> </a></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource MedicationRequest &quot;Insulin&quot; Version &quot;1&quot; Updated &quot;2020-08-10 01:54:34+0000&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-PAOX-medication-request.html\">PAO MedicationRequest</a></p></div><p><b>status</b>: active</p><p><b>intent</b>: order</p><p><b>medication</b>: Humulin R 100 UNT/ML Injectable Solution <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/5.0.0/CodeSystem-v3-rxNorm.html\">RxNorm</a>#311036)</span></p><p><b>subject</b>: <a href=\"Patient-example1.html\">Patient/example1: Amy Shaw</a> &quot; SHAW&quot;</p><p><b>authoredOn</b>: 2020-08-05</p><p><b>requester</b>: <a href=\"Practitioner-practitioner-1.html\">Practitioner/practitioner-1: Ronald Bone, MD</a> &quot; BONE&quot;</p><h3>DosageInstructions</h3><table class=\"grid\"><tr><td>-</td><td><b>Text</b></td><td><b>Timing</b></td></tr><tr><td>*</td><td>0.5 ML tid</td><td>Starting 2020-08-06, Once</td></tr></table><blockquote><p><b>dispenseRequest</b></p><p><b>numberOfRepeatsAllowed</b>: 3</p><p><b>quantity</b>: 50 mL<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code mL = 'mL')</span></p><h3>ExpectedSupplyDurations</h3><table class=\"grid\"><tr><td>-</td><td><b>Value</b></td><td><b>Unit</b></td><td><b>System</b></td><td><b>Code</b></td></tr><tr><td>*</td><td>30</td><td>days</td><td><a href=\"http://terminology.hl7.org/5.0.0/CodeSystem-v3-ucum.html\">Unified Code for Units of Measure (UCUM)</a></td><td>d</td></tr></table></blockquote></div>"
  ] ; # 
  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:code [ fhir:v "311036" ] ;
       fhir:display [ fhir:v "Humulin R 100 UNT/ML Injectable Solution" ]
     ] ) ;
     fhir:text [ fhir:v "Humulin R 100 UNT/ML Injectable Solution" ]
  ] ; # 
  fhir:subject [
     fhir:link <http://hl7.org/fhir/us/dme-orders/Patient/example1> ;
     fhir:reference [ fhir:v "Patient/example1" ] ;
     fhir:display [ fhir:v "Amy Shaw" ]
  ] ; # 
  fhir:authoredOn [ fhir:v "2020-08-05"^^xsd:date] ; # 
  fhir:requester [
     fhir:link <http://hl7.org/fhir/us/dme-orders/Practitioner/practitioner-1> ;
     fhir:reference [ fhir:v "Practitioner/practitioner-1" ] ;
     fhir:display [ fhir:v "Ronald Bone, MD" ]
  ] ; # 
  fhir:dosageInstruction ( [
     fhir:text [ fhir:v "0.5 ML tid" ] ;
     fhir:timing [
       fhir:repeat [
         fhir:bounds [
           a fhir:Period ;
           fhir:start [ fhir:v "2020-08-06"^^xsd:date ]
         ]
       ]
     ]
  ] ) ; # 
  fhir:dispenseRequest [
     fhir:numberOfRepeatsAllowed [ fhir:v "3"^^xsd:nonNegativeInteger ] ;
     fhir:quantity [
       fhir:value [ fhir:v "50"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "mL" ] ;
       fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "mL" ]
     ] ;
     fhir:expectedSupplyDuration [
       fhir:value [ fhir:v "30"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "days" ] ;
       fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "d" ]
     ]
  ] . # 

<http://hl7.org/fhir/us/dme-orders/Patient/example1> a fhir:us .

<http://hl7.org/fhir/us/dme-orders/Practitioner/practitioner-1> a fhir:us .

# -------------------------------------------------------------------------------------

