QI-Core Implementation Guide
4.1.0 - release

This page is part of the Quality Improvement Core Framework (v4.1.0: STU 4) based on FHIR R4. The current version which supercedes this version is 4.1.1. For a full list of available versions, 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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:PractitionerRole;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-practitionerrole";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-practitionerrole>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><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\">Resource \"example\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-qicore-practitionerrole.html\">QICorePractitionerRole</a></p></div><p><b>identifier</b>: id: 31 (TEMP)</p><p><b>active</b>: true</p><p><b>period</b>: 1995-01-01 --&gt; (ongoing)</p><p><b>practitioner</b>: <a href=\"Practitioner-example.html\">Practitioner/example: Dr Adam Careful</a> \" CAREFUL\"</p><p><b>organization</b>: <a href=\"Organization-example.html\">Organization/example</a> \"Health Level Seven International\"</p><p><b>code</b>: Clinic/Center <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (provider-taxonomy#261Q00000X)</span></p><p><b>specialty</b>: Dentist <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (provider-taxonomy#122300000X)</span></p><p><b>location</b>: <a href=\"Location-example.html\">Location/example</a> \"South Wing, second floor\"</p><p><b>telecom</b>: ph: 801-123-4567</p></div>"
  ];
  fhir:PractitionerRole.identifier [
     fhir:index 0;
     fhir:Identifier.use [ fhir:value "temp" ];
     fhir:Identifier.system [ fhir:value "http://www.acme.org/practitionerroles" ];
     fhir:Identifier.value [ fhir:value "31" ]
  ];
  fhir:PractitionerRole.active [ fhir:value "true"^^xsd:boolean];
  fhir:PractitionerRole.period [
     fhir:Period.start [ fhir:value "1995"^^xsd:gYear ]
  ];
  fhir:PractitionerRole.practitioner [
     fhir:Reference.reference [ fhir:value "Practitioner/example" ];
     fhir:Reference.display [ fhir:value "Dr Adam Careful" ]
  ];
  fhir:PractitionerRole.organization [
     fhir:Reference.reference [ fhir:value "Organization/example" ]
  ];
  fhir:PractitionerRole.code [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://nucc.org/provider-taxonomy" ];
       fhir:Coding.code [ fhir:value "261Q00000X" ];
       fhir:Coding.display [ fhir:value "Clinic/Center" ]     ]
  ];
  fhir:PractitionerRole.specialty [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://nucc.org/provider-taxonomy" ];
       fhir:Coding.code [ fhir:value "122300000X" ];
       fhir:Coding.display [ fhir:value "Dentist" ]     ]
  ];
  fhir:PractitionerRole.location [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Location/example" ]
  ];
  fhir:PractitionerRole.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "801-123-4567" ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.