@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://hl7.org/fhir/us/central-cancer-registry-reporting/MedicationAdministration/cancer-med-admin-docetaxel-example> a fhir:MedicationAdministration ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "cancer-med-admin-docetaxel-example"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-cancer-related-medication-administration"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-cancer-related-medication-administration>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Profile: </b> <a href=\"https://hl7.org/fhir/us/mcode/StructureDefinition-mcode-cancer-related-medication-administration.html\">mCODE Cancer Related Medication Administration</a></p><p><b>status:</b> completed</p><p><b>category:</b> Outpatient</p><p><b>medication:</b> rxnorm 72962 docetaxel</p><p><b>subject:</b> <a href=\"Patient-example.html\">Patient-example: Amy Shaw</a></p><p><b>start date:</b> 2023-04-10</p><p><b>Performer:</b> Joseph Nichols</p><p><b>reasonReference:</b> Condition-primary-cancer-condition-breast</p><p><b>authoredOn:</b> 2023-04-10</p><p><b>note:</b> Chemotherapy regimen of docetaxel, carboplatin, adriamycin, cyclophosphamide, and paclitaxel administered by continuous infusion. Patient tolerated infusion without side effects.</p><p><b>Route:</b> SNOMED 47625008 Intravenous route (qualifier value)</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:category [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/medication-admin-category"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/medication-admin-category>
       ] ;
       fhir:code [ fhir:v "outpatient" ]
     ] )
  ] ; # 
  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 "72962" ] ;
       fhir:display [ fhir:v "docetaxel" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <http://hl7.org/fhir/us/central-cancer-registry-reporting/Patient/example> ;
     fhir:reference [ fhir:v "Patient/example" ]
  ] ; # 
  fhir:effective [
     a fhir:DateTime ;
     fhir:v "2023-04-10"^^xsd:date
  ] ; # 
  fhir:performer ( [
     fhir:actor [
       fhir:l <http://hl7.org/fhir/us/central-cancer-registry-reporting/Practitioner/1> ;
       fhir:reference [ fhir:v "Practitioner/1" ]
     ]
  ] ) ; # 
  fhir:reasonCode ( [
     fhir:coding ( [
       a sct:408643008 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "408643008" ] ;
       fhir:display [ fhir:v "Infiltrating duct carcinoma of breast (disorder)" ]
     ] )
  ] ) ; # 
  fhir:reasonReference ( [
     fhir:l <http://hl7.org/fhir/us/central-cancer-registry-reporting/Condition/primary-cancer-condition-breast> ;
     fhir:reference [ fhir:v "Condition/primary-cancer-condition-breast" ]
  ] ) ; # 
  fhir:note ( [
     fhir:author [
       a fhir:Reference ;
       fhir:l <http://hl7.org/fhir/us/central-cancer-registry-reporting/Practitioner/1> ;
       fhir:reference [ fhir:v "Practitioner/1" ]
     ] ;
     fhir:time [ fhir:v "2023-04-10"^^xsd:date ] ;
     fhir:text [ fhir:v "docetaxel administered by continuous infusion. Patient tolerated infusion without side effects." ]
  ] ) ; # 
  fhir:dosage [
     fhir:route [
       fhir:coding ( [
         a sct:47625008 ;
         fhir:system [
           fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
           fhir:l <http://snomed.info/sct>
         ] ;
         fhir:code [ fhir:v "47625008" ] ;
         fhir:display [ fhir:v "Intravenous route (qualifier value)" ]
       ] )
     ] ;
     fhir:dose [
       fhir:value [ fhir:v "60"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "mg" ] ;
       fhir:system [
         fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
         fhir:l <http://unitsofmeasure.org>
       ] ;
       fhir:code [ fhir:v "mg" ]
     ]
  ] . # 

<http://hl7.org/fhir/us/central-cancer-registry-reporting/Patient/example> a fhir:Us .

<http://hl7.org/fhir/us/central-cancer-registry-reporting/Practitioner/1> a fhir:Us .

<http://hl7.org/fhir/us/central-cancer-registry-reporting/Condition/primary-cancer-condition-breast> a fhir:Us .

# -------------------------------------------------------------------------------------

