@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://fhir.ehdsi.eu/hdr/PractitionerRole/b975ec26-4ecf-4588-9fa2-afbb0d9fc530> a fhir:PractitionerRole ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "b975ec26-4ecf-4588-9fa2-afbb0d9fc530"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.eu/fhir/base/StructureDefinition/practitionerRole-eu-core"^^xsd:anyURI ;
       fhir:l <http://hl7.eu/fhir/base/StructureDefinition/practitionerRole-eu-core>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">Dr. Maria Gonzalez - Internal Medicine</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "http://example.org/practitioner-role-ids"^^xsd:anyURI ;
       fhir:l <http://example.org/practitioner-role-ids>
     ] ;
     fhir:value [ fhir:v "PR-123456" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:practitioner [
     fhir:l <urn:uuid:b06b2c2c-15dd-4e58-b27e-37326ba51407> ;
     fhir:reference [ fhir:v "urn:uuid:b06b2c2c-15dd-4e58-b27e-37326ba51407" ]
  ] ; # 
  fhir:organization [
     fhir:l <urn:uuid:ff4d98d1-69c9-43db-896e-58d11c15662c> ;
     fhir:reference [ fhir:v "urn:uuid:ff4d98d1-69c9-43db-896e-58d11c15662c" ]
  ] ; # 
  fhir:code ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "urn:oid:2.16.840.1.113883.2.9.6.2.7"^^xsd:anyURI ;
         fhir:l <urn:oid:2.16.840.1.113883.2.9.6.2.7>
       ] ;
       fhir:code [ fhir:v "221" ] ;
       fhir:display [ fhir:v "Medical Doctors" ]
     ] )
  ] ) ; # 
  fhir:specialty ( [
     fhir:coding ( [
       a sct:419192003 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "419192003" ] ;
       fhir:display [ fhir:v "Internal medicine" ]
     ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

