HL7 Europe Base and Core FHIR IG, published by HL7 Europe. This guide is not an authorized publication; it is the continuous build for version 0.0.1-ci built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/hl7-eu/base/ and changes regularly. See the Directory of published versions
: Example PractitionerRole (EU core) - TTL Representation
Raw ttl | Download
@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:PractitionerRole ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "practitionerRole-eu-core-example"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://hl7.eu/fhir/base/StructureDefinition/practitionerRole-eu-core"^^xsd:anyURI ;
fhir:link <http://hl7.eu/fhir/base/StructureDefinition/practitionerRole-eu-core> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: PractitionerRole practitionerRole-eu-core-example</b></p><a name=\"practitionerRole-eu-core-example\"> </a><a name=\"hcpractitionerRole-eu-core-example\"> </a><a name=\"practitionerRole-eu-core-example-en-US\"> </a><p><b>active</b>: true</p><p><b>practitioner</b>: <a href=\"Practitioner-practitioner-eu-core-example.html\">Practitioner John Doe </a></p><p><b>organization</b>: <a href=\"Organization-example-organization.html\">Organization Example Health Organization</a></p><p><b>code</b>: <span title=\"Codes:{http://snomed.info/sct 394814009}\">General practice (specialty)</span></p><p><b>specialty</b>: <span title=\"Codes:{http://snomed.info/sct 408443003}\">General medical practice</span></p></div>"
] ; #
fhir:active [ fhir:v "true"^^xsd:boolean] ; #
fhir:practitioner [
fhir:reference [ fhir:v "Practitioner/practitioner-eu-core-example" ]
] ; #
fhir:organization [
fhir:reference [ fhir:v "Organization/example-organization" ]
] ; #
fhir:code ( [
( fhir:coding [
a sct:394814009 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "394814009" ] ;
fhir:display [ fhir:v "General practice (specialty)" ] ] )
] ) ; #
fhir:specialty ( [
( fhir:coding [
a sct:408443003 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "408443003" ] ;
fhir:display [ fhir:v "General medical practice" ] ] )
] ) . #