@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 -------------------------------------------------------------------

<https://fhir.apps.health/MedicationDispense/avery-iron-sample-20250408> a fhir:MedicationDispense ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "avery-iron-sample-20250408"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://fhir.apps.health/StructureDefinition/polaris-medicationdispense"^^xsd:anyURI ;
       fhir:link <https://fhir.apps.health/StructureDefinition/polaris-medicationdispense>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">3-day starter supply of ferrous sulfate 325mg tablets dispensed to Avery Linwood by Dr. Emil Navarro on April 8, 2025.</div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-medicationdispense-identifier"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "DISPENSE-SAMPLE-IRON-20250408" ]
  ] ) ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:medication [
     a fhir:CodeableConcept ;
     fhir:text [ fhir:v "Ferrous sulfate 325 MG Oral Tablet" ]
  ] ; # 
  fhir:subject [
     fhir:identifier [
       fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-patient-identifier"^^xsd:anyURI ] ;
       fhir:value [ fhir:v "1234567890" ]
     ] ;
     fhir:display [ fhir:v "Avery Linwood" ]
  ] ; # 
  fhir:performer ( [
     fhir:actor [
       fhir:identifier [
         fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-practitioner-identifier"^^xsd:anyURI ] ;
         fhir:value [ fhir:v "NAVARRO-PRAC-001" ]
       ] ;
       fhir:display [ fhir:v "Dr. Emil Navarro" ]
     ]
  ] ) ; # 
  fhir:quantity [
     fhir:value [ fhir:v "3"^^xsd:decimal ] ;
     fhir:unit [ fhir:v "1" ] ;
     fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
     fhir:code [ fhir:v "1" ]
  ] ; # 
  fhir:daysSupply [
     fhir:value [ fhir:v "3"^^xsd:decimal ] ;
     fhir:unit [ fhir:v "days" ] ;
     fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
     fhir:code [ fhir:v "d" ]
  ] ; # 
  fhir:whenHandedOver [ fhir:v "2025-04-08T10:40:00-06:00"^^xsd:dateTime] ; # 
  fhir:note ( [
     fhir:text [ fhir:v "Three-day supply of ferrous sulfate provided as a starter sample during appointment." ]
  ] ) ; # 
  fhir:dosageInstruction ( [
     fhir:text [ fhir:v "Take one tablet by mouth daily" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

