@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/Location/example-country> a fhir:Location ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-country"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://fhir.icr.unicef.org/StructureDefinition/ICRLocation" ;
       fhir:index 0 ;
       fhir:link <https://fhir.icr.unicef.org/StructureDefinition/ICRLocation>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Location example-country</b></p><a name=\"example-country\"> </a><a name=\"hcexample-country\"> </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-ICRLocation.html\">ICR Location</a></p></div><p><b>identifier</b>: <code>https://fhir.icr.unicef.org/identifiers/pcode</code>/SL, <code>https://fhir.icr.unicef.org/identifiers/overture-gers</code>/08f2a3b4c5d6e7f8-division-country-example</p><p><b>status</b>: Active</p><p><b>name</b>: Sierra Leone</p><p><b>type</b>: <span title=\"Codes:{https://fhir.icr.unicef.org/CodeSystem/icr-location-type-cs admin-unit}\">Administrative unit</span></p><p><b>physicalType</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/location-physical-type jdn}\">Jurisdiction</span></p></div>"
  ] ;
  fhir:Location.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "https://fhir.icr.unicef.org/identifiers/pcode" ] ;
     fhir:Identifier.value [ fhir:value "SL" ]
  ], [
     fhir:index 1 ;
     fhir:Identifier.system [ fhir:value "https://fhir.icr.unicef.org/identifiers/overture-gers" ] ;
     fhir:Identifier.value [ fhir:value "08f2a3b4c5d6e7f8-division-country-example" ]
  ] ;
  fhir:Location.status [ fhir:value "active"] ;
  fhir:Location.name [ fhir:value "Sierra Leone"] ;
  fhir:Location.type [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "https://fhir.icr.unicef.org/CodeSystem/icr-location-type-cs" ] ;
       fhir:Coding.code [ fhir:value "admin-unit" ] ;
       fhir:Coding.display [ fhir:value "Administrative unit" ]
     ]
  ] ;
  fhir:Location.physicalType [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/location-physical-type" ] ;
       fhir:Coding.code [ fhir:value "jdn" ] ;
       fhir:Coding.display [ fhir:value "Jurisdiction" ]
     ]
  ] .

# - ontology header ------------------------------------------------------------

<https://fhir.icr.unicef.org/Location/example-country.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

