@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 -------------------------------------------------------------------

<http://canshare.co.nz/fhir/MedicationAdministration/medicationadministration-1> a fhir:MedicationAdministration ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "medicationadministration-1"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://canshare.co.nz/fhir/StructureDefinition/an-medication-administration"^^xsd:anyURI ;
       fhir:link <http://canshare.co.nz/fhir/StructureDefinition/an-medication-administration>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Oxaliplatin260.00 mg IV</div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:extension ( [
     fhir:extension ( [
       fhir:url [ fhir:v "planned"^^xsd:anyURI ] ;
       fhir:value [
         a fhir:integer ;
         fhir:v 3
       ]
     ] [
       fhir:url [ fhir:v "administered"^^xsd:anyURI ] ;
       fhir:value [
         a fhir:integer ;
         fhir:v 4
       ]
     ] ) ;
     fhir:url [ fhir:v "http://canshare.co.nz/fhir/StructureDefinition/an-cycle-day"^^xsd:anyURI ]
  ] [
     fhir:url [ fhir:v "http://canshare.co.nz/fhir/StructureDefinition/an-prescribed-dose"^^xsd:anyURI ] ;
     fhir:value [
       a fhir:Dosage ;
       fhir:text [ fhir:v "300 mg" ]
     ]
  ] [
     fhir:url [ fhir:v "http://canshare.co.nz/fhir/StructureDefinition/an-dose-adjustment-reason"^^xsd:anyURI ] ;
     fhir:value [
       a fhir:CodeableConcept ;
       fhir:coding ( [
         fhir:system [ fhir:v "http://snomed.info/sct/21000210109"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "49808004" ] ;
         fhir:display [ fhir:v "Advanced age" ]
       ] )
     ]
  ] ) ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://canshare.co.nz/fhir/NamingSystem/1"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "ma-1" ]
  ] ) ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:medication [
     a fhir:CodeableConcept ;
     fhir:text [ fhir:v "Oxaliplatin" ]
  ] ; # 
  fhir:subject [
     fhir:link <http://canshare.co.nz/fhir/Patient/exPatient> ;
     fhir:reference [ fhir:v "Patient/exPatient" ]
  ] ; # 
  fhir:supportingInformation ( [
     fhir:link <http://canshare.co.nz/fhir/CarePlan/careplan-cycle-1> ;
     fhir:reference [ fhir:v "CarePlan/careplan-cycle-1" ]
  ] ) ; # 
  fhir:effective [
     a fhir:Period ;
     fhir:start [ fhir:v "2014-04-08T09:35:00Z"^^xsd:dateTime ] ;
     fhir:end [ fhir:v "2014-04-08T12:00:00Z"^^xsd:dateTime ]
  ] ; # 
  fhir:dosage [
     fhir:text [ fhir:v "260.00 mg" ] ;
     fhir:route [
       fhir:text [ fhir:v "IV" ]
     ] ;
     fhir:dose [
       fhir:value [ fhir:v "260"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "mg" ]
     ]
  ] . # 

# -------------------------------------------------------------------------------------

