@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://fhir.ee/ahd/Practitioner/practitioner-example> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "practitioner-example"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Practitioner practitioner-example</b></p><a name=\"practitioner-example\"> </a><a name=\"hcpractitioner-example\"> </a><p><b>identifier</b>: <code>https://example.ee/fhir/sid/hcp-person-id</code>/38101010021</p><p><b>active</b>: true</p><p><b>name</b>: Katrin Tamm (Official)</p><p><b>telecom</b>: <a href=\"tel:+3726001234\">+3726001234</a></p><h3>Qualifications</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Code</b></td></tr><tr><td style=\"display: none\">*</td><td><span title=\"Codes:\">Arst</span></td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "https://example.ee/fhir/sid/hcp-person-id"^^xsd:anyURI ;
       fhir:l <https://example.ee/fhir/sid/hcp-person-id>
     ] ;
     fhir:value [ fhir:v "38101010021" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:name ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:family [ fhir:v "Tamm" ] ;
     fhir:given ( [ fhir:v "Katrin" ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "+3726001234" ] ;
     fhir:use [ fhir:v "work" ]
  ] ) ; # 
  fhir:qualification ( [
     fhir:code [
       fhir:text [ fhir:v "Arst" ]
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

