@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://icr.healthcampaigns.org/Organization/example-facility-org> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-facility-org"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://icr.healthcampaigns.org/StructureDefinition/ICRFacilityOrganization" ;
       fhir:index 0 ;
       fhir:link <https://icr.healthcampaigns.org/StructureDefinition/ICRFacilityOrganization>
     ] ;
     fhir:Meta.tag [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "https://icr.healthcampaigns.org/CodeSystem/icr-project-tag-cs" ] ;
       fhir:Coding.code [ fhir:value "mr-sia" ] ;
       fhir:Coding.display [ fhir:value "MR SIA (Sierra Leone)" ]
     ]
  ] ;
  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: Organization example-facility-org</b></p><a name=\"example-facility-org\"> </a><a name=\"hcexample-facility-org\"> </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-ICRFacilityOrganization.html\">ICR Facility Organization</a></p><p style=\"margin-bottom: 0px\">Tag: <a href=\"CodeSystem-icr-project-tag-cs.html\">MR SIA (Sierra Leone) (Details: ICR Project Tag code mr-sia = 'MR SIA (Sierra Leone)')</a></p></div><p><b>identifier</b>: <code>https://icr.healthcampaigns.org/identifiers/registry-id</code>/SL-MFL-0421</p><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/organization-type prov}\">Healthcare Provider</span>, <span title=\"Codes:{https://icr.healthcampaigns.org/CodeSystem/icr-facility-type-cs primary}\">Community Health Centre</span>, <span title=\"Codes:{https://icr.healthcampaigns.org/CodeSystem/icr-ownership-cs public}\">Public</span></p><p><b>name</b>: Rokupr Community Health Centre</p></div>"
  ] ;
  fhir:Organization.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "https://icr.healthcampaigns.org/identifiers/registry-id" ] ;
     fhir:Identifier.value [ fhir:value "SL-MFL-0421" ]
  ] ;
  fhir:Organization.active [ fhir:value "true"^^xsd:boolean] ;
  fhir:Organization.type [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/organization-type" ] ;
       fhir:Coding.code [ fhir:value "prov" ] ;
       fhir:Coding.display [ fhir:value "Healthcare Provider" ]
     ]
  ], [
     fhir:index 1 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "https://icr.healthcampaigns.org/CodeSystem/icr-facility-type-cs" ] ;
       fhir:Coding.code [ fhir:value "primary" ] ;
       fhir:Coding.display [ fhir:value "Primary care facility" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Community Health Centre" ]
  ], [
     fhir:index 2 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "https://icr.healthcampaigns.org/CodeSystem/icr-ownership-cs" ] ;
       fhir:Coding.code [ fhir:value "public" ] ;
       fhir:Coding.display [ fhir:value "Public" ]
     ]
  ] ;
  fhir:Organization.name [ fhir:value "Rokupr Community Health Centre"] .

# - ontology header ------------------------------------------------------------

<https://icr.healthcampaigns.org/Organization/example-facility-org.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

