Consumer-Directed Payer Data Exchange
- Release 0.1.0

This page is part of a downloaded copy of this specification. This page is part of the CARIN Blue Button Implementation Guide (v0.1.0: STU1 Ballot 1) based on FHIR R4. For a full list of available versions, see the Directory of published versions

Turtle Format: PractitionerRole-PractitionerRole1

Raw ttl

@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 "PractitionerRole1"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "2" ];
     fhir:Meta.lastUpdated [ fhir:value "2019-12-15T20:23:13.000-05:00"^^xsd:dateTime ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/carin/StructureDefinition/carin-bb-practitionerrole";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/carin/StructureDefinition/carin-bb-practitionerrole>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n			<p>\n				<b>Generated Narrative with Details</b>\n			</p>\n			</div>"
  ];
  fhir:PractitionerRole.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://www.bcbs.com/fhir/ns/NamingSystem/practitionerrole-identifier-inpatient" ];
     fhir:Identifier.value [ fhir:value "AB12350" ]
  ];
  fhir:PractitionerRole.practitioner [
     fhir:Reference.display [ fhir:value "Dr. Adam Careful" ]
  ];
  fhir:PractitionerRole.organization [
     fhir:Reference.reference [ fhir:value "Organization/Org1" ]
  ];
  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 "207R00000X" ];
       fhir:Coding.display [ fhir:value "Internal Medicine" ]     ]
  ];
  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 "207RC0000X" ];
       fhir:Coding.display [ fhir:value "Cardiovascular Disease" ]     ]
  ];
  fhir:PractitionerRole.location [
     fhir:index 0;
     fhir:Reference.display [ fhir:value "South Wing, second floor" ]
  ];
  fhir:PractitionerRole.healthcareService [
     fhir:index 0;
     fhir:Reference.display [ fhir:value "HealthcareService/example" ]
  ];
  fhir:PractitionerRole.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "333-333-3333" ];
     fhir:ContactPoint.use [ fhir:value "work" ]
  ], [
     fhir:index 1;
     fhir:ContactPoint.system [ fhir:value "email" ];
     fhir:ContactPoint.value [ fhir:value "adam.careful@example.org" ];
     fhir:ContactPoint.use [ fhir:value "work" ]
  ];
  fhir:PractitionerRole.endpoint [
     fhir:index 0;
     fhir:Reference.display [ fhir:value "Endpoint/example" ]
  ].

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

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