Cancer Pathology Data Sharing
0.1.0 - STU 1 Ballot

This page is part of the Sharing eCC Data from Pathology Labs to EHR (v0.1.0: STU1 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions

: Pathologist 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 "pathologist-example"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "7" ];
     fhir:Meta.lastUpdated [ fhir:value "2021-08-06T14:01:37.146+00:00"^^xsd:dateTime ];
     fhir:Meta.source [ fhir:value "#ZUtzI9gMaQppmoj3" ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitionerrole";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitionerrole>     ], [
       fhir:value "http://hl7.org/fhir/us/cancer-reporting/StructureDefinition/us-pathology-related-practitioner-role";
       fhir:index 1;
       fhir:link <http://hl7.org/fhir/us/cancer-reporting/StructureDefinition/us-pathology-related-practitioner-role>     ]
  ];
  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><p><b>practitioner</b>: <a href=\"Practitioner-pathologist-example.html\">Generated Summary: id: 987654321; Stains Alot </a></p><p><b>organization</b>: <a href=\"Organization-principal-pathology-lab.html\">Generated Summary: active; name: Some Pathology Lab Name</a></p><p><b>code</b>: <span title=\"Codes: {http://hl7.org/fhir/us/cancer-reporting/CodeSystem/us-pathology-provider-types principal-result-interpreter}\">Pathologist principally interpreting results on pathology testing</span></p><p><b>telecom</b>: ph: 720-242-9999</p></div>"
  ];
  fhir:PractitionerRole.practitioner [
     fhir:Reference.reference [ fhir:value "Practitioner/pathologist-example" ]
  ];
  fhir:PractitionerRole.organization [
     fhir:Reference.reference [ fhir:value "Organization/principal-pathology-lab" ]
  ];
  fhir:PractitionerRole.code [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/us/cancer-reporting/CodeSystem/us-pathology-provider-types" ];
       fhir:Coding.code [ fhir:value "principal-result-interpreter" ];
       fhir:Coding.display [ fhir:value "Pathologist principally interpreting results on pathology testing" ]     ]
  ];
  fhir:PractitionerRole.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "720-242-9999" ]
  ].

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

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