@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 -------------------------------------------------------------------

<https://fhir.icr.unicef.org/SupplyDelivery/example-itn-delivery> a fhir:SupplyDelivery ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-itn-delivery"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://fhir.icr.unicef.org/StructureDefinition/ICRSupplyDelivery" ;
       fhir:index 0 ;
       fhir:link <https://fhir.icr.unicef.org/StructureDefinition/ICRSupplyDelivery>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "extensions" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: SupplyDelivery example-itn-delivery</b></p><a name=\"example-itn-delivery\"> </a><a name=\"hcexample-itn-delivery\"> </a><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\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-ICRSupplyDelivery.html\">ICR Supply Delivery</a></p></div><p><b>Record Origin</b>: campaign</p><p><b>status</b>: Delivered</p><h3>SuppliedItems</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Quantity</b></td><td><b>Item[x]</b></td></tr><tr><td style=\"display: none\">*</td><td>3 nets<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM  code{Net} = '{Net}')</span></td><td><span title=\"Codes:\">Long-lasting insecticidal net (LLIN)</span></td></tr></table><p><b>destination</b>: <a href=\"Location-example-dwelling.html\">Location Dwelling — Rokupr block 4, house 12</a></p></div>"
  ] ;
  fhir:DomainResource.extension [
     fhir:index 0 ;
     fhir:Extension.url [ fhir:value "https://fhir.icr.unicef.org/StructureDefinition/record-origin" ] ;
     fhir:Extension.valueCode [ fhir:value "campaign" ]
  ] ;
  fhir:SupplyDelivery.status [ fhir:value "completed"] ;
  fhir:SupplyDelivery.suppliedItem [
     fhir:SupplyDelivery.suppliedItem.quantity [
       fhir:Quantity.value [ fhir:value "3"^^xsd:decimal ] ;
       fhir:Quantity.unit [ fhir:value "nets" ] ;
       fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ] ;
       fhir:Quantity.code [ fhir:value "{Net}" ]
     ] ;
     fhir:SupplyDelivery.suppliedItem.itemCodeableConcept [
       fhir:CodeableConcept.text [ fhir:value "Long-lasting insecticidal net (LLIN)" ]
     ]
  ] ;
  fhir:SupplyDelivery.destination [
     fhir:link <https://fhir.icr.unicef.org/Location/example-dwelling> ;
     fhir:Reference.reference [ fhir:value "Location/example-dwelling" ]
  ] .

# - ontology header ------------------------------------------------------------

<https://fhir.icr.unicef.org/SupplyDelivery/example-itn-delivery.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

