HL7 Europe Base and Core FHIR IG
2.0.0 - trial-use 150

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 2.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/patrick-werner/base-r5/ and changes regularly. See the Directory of published versions

: PractitionerRole Example - TTL Representation

Raw ttl | Download


@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://hl7.org/fhir/PractitionerRole/practitionerRole-eu-core-example> 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-r5/StructureDefinition/practitionerRole-eu-core"^^xsd:anyURI ;
       fhir:link <http://hl7.eu/fhir/base-r5/StructureDefinition/practitionerRole-eu-core>
     ] )
  ] ; # 
  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: PractitionerRole practitionerRole-eu-core-example</b></p><a name=\"practitionerRole-eu-core-example\"> </a><a name=\"hcpractitionerRole-eu-core-example\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-practitionerRole-eu-core.html\">PractitionerRole (EU core)</a></p></div><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-organization-eu-core-example.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>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:practitioner [
     fhir:link <http://hl7.org/fhir/Practitioner/practitioner-eu-core-example> ;
     fhir:reference [ fhir:v "Practitioner/practitioner-eu-core-example" ]
  ] ; # 
  fhir:organization [
     fhir:link <http://hl7.org/fhir/Organization/organization-eu-core-example> ;
     fhir:reference [ fhir:v "Organization/organization-eu-core-example" ]
  ] ; # 
  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" ]
     ] )
  ] ) . # 

<http://hl7.org/fhir/Practitioner/practitioner-eu-core-example> a fhir:Practitioner .

<http://hl7.org/fhir/Organization/organization-eu-core-example> a fhir:Organization .