@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.apps.health/Practitioner/dr-emil-navarro> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "dr-emil-navarro"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://fhir.apps.health/StructureDefinition/polaris-core-practitioner"^^xsd:anyURI ;
       fhir:link <https://fhir.apps.health/StructureDefinition/polaris-core-practitioner>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>Dr. Emil A. Navarro, Primary Care Physician, registered under Alberta PRAC ID NAVARRO-PRAC-001.</p></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-practitioner-identifier"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "NAVARRO-PRAC-001" ]
  ] [
     fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-practitioner-identifier-raw-code"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "3923a42deadbeef94e0223f90b" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Navarro" ] ;
     fhir:given ( [ fhir:v "Emil" ] [ fhir:v "A." ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

