@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/Group/example-household> a fhir:Group ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-household"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://fhir.icr.unicef.org/StructureDefinition/ICRDeliveryUnit" ;
       fhir:index 0 ;
       fhir:link <https://fhir.icr.unicef.org/StructureDefinition/ICRDeliveryUnit>
     ]
  ] ;
  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: Group example-household</b></p><a name=\"example-household\"> </a><a name=\"hcexample-household\"> </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-ICRDeliveryUnit.html\">ICR Delivery Unit (Household / Community)</a></p></div><p><b>Group Location</b>: <a href=\"Location-example-dwelling.html\">Location Dwelling — Rokupr block 4, house 12</a></p><p><b>type</b>: Person</p><p><b>actual</b>: true</p><p><b>code</b>: <span title=\"Codes:{https://fhir.icr.unicef.org/CodeSystem/icr-group-kind-cs household}\">Household</span></p><p><b>quantity</b>: 6</p><h3>Members</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Entity</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"Patient-example-child.html\">Aminata Kamara  Female, DoB: 2023-04-12 ( https://fhir.icr.unicef.org/identifiers/national-id#SL-2023-04-0099812)</a></td></tr></table></div>"
  ] ;
  fhir:DomainResource.extension [
     fhir:index 0 ;
     fhir:Extension.url [ fhir:value "https://fhir.icr.unicef.org/StructureDefinition/group-location" ] ;
     fhir:Extension.valueReference [
       fhir:link <https://fhir.icr.unicef.org/Location/example-dwelling> ;
       fhir:Reference.reference [ fhir:value "Location/example-dwelling" ]
     ]
  ] ;
  fhir:Group.type [ fhir:value "person"] ;
  fhir:Group.actual [ fhir:value "true"^^xsd:boolean] ;
  fhir:Group.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "https://fhir.icr.unicef.org/CodeSystem/icr-group-kind-cs" ] ;
       fhir:Coding.code [ fhir:value "household" ] ;
       fhir:Coding.display [ fhir:value "Household" ]
     ]
  ] ;
  fhir:Group.quantity [ fhir:value "6"^^xsd:nonNegativeInteger] ;
  fhir:Group.member [
     fhir:index 0 ;
     fhir:Group.member.entity [
       fhir:link <https://fhir.icr.unicef.org/Patient/example-child> ;
       fhir:Reference.reference [ fhir:value "Patient/example-child" ]
     ]
  ] .

# - ontology header ------------------------------------------------------------

<https://fhir.icr.unicef.org/Group/example-household.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

