@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 -------------------------------------------------------------------

<http://fhir.ehdsi.eu/hdr/Practitioner/b06b2c2c-15dd-4e58-b27e-37326ba51407> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "b06b2c2c-15dd-4e58-b27e-37326ba51407"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.eu/fhir/base/StructureDefinition/practitioner-eu-core"^^xsd:anyURI ;
       fhir:l <http://hl7.eu/fhir/base/StructureDefinition/practitioner-eu-core>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">Dr. Maria Gonzalez</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "http://example.org/practitioner-ids"^^xsd:anyURI ;
       fhir:l <http://example.org/practitioner-ids>
     ] ;
     fhir:value [ fhir:v "PRAC-001" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Gonzalez" ] ;
     fhir:given ( [ fhir:v "Maria" ] ) ;
     fhir:prefix ( [ fhir:v "Dr." ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "+32 2 555 0100" ] ;
     fhir:use [ fhir:v "work" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

