@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://nshr-uat.sha.go.ke/fhir/Practitioner/em-practitioner-example> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "em-practitioner-example"] ;
  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: Practitioner em-practitioner-example</b></p><a name=\"em-practitioner-example\"> </a><a name=\"hcem-practitioner-example\"> </a><p><b>active</b>: true</p><p><b>name</b>: Sarah Njoroge </p><p><b>telecom</b>: <a href=\"tel:+254700100200\">+254700100200</a></p></div>"
  ] ;
  fhir:Practitioner.active [ fhir:value "true"^^xsd:boolean] ;
  fhir:Practitioner.name [
     fhir:index 0 ;
     fhir:HumanName.family [ fhir:value "Njoroge" ] ;
     fhir:HumanName.given [
       fhir:value "Sarah" ;
       fhir:index 0
     ]
  ] ;
  fhir:Practitioner.telecom [
     fhir:index 0 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "+254700100200" ]
  ] .

# - ontology header ------------------------------------------------------------

<https://nshr-uat.sha.go.ke/fhir/Practitioner/em-practitioner-example.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

