@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://fhir.org/guides/cdc/opioid-cds/PractitionerRole/oncology-specialist> a fhir:PractitionerRole ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "oncology-specialist"] ; # 
  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 oncology-specialist</b></p><a name=\"oncology-specialist\"> </a><a name=\"hconcology-specialist\"> </a><p><b>active</b>: true</p><p><b>period</b>: 2021-11-24 --&gt; 2023-11-24</p><p><b>specialty</b>: <span title=\"Codes:{http://nucc.org/provider-taxonomy 207RX0202X}\">Medical Oncology Physician</span></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:period [
     fhir:start [ fhir:v "2021-11-24"^^xsd:date ] ;
     fhir:end [ fhir:v "2023-11-24"^^xsd:date ]
  ] ; # 
  fhir:specialty ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://nucc.org/provider-taxonomy"^^xsd:anyURI ;
         fhir:l <http://nucc.org/provider-taxonomy>
       ] ;
       fhir:code [ fhir:v "207RX0202X" ] ;
       fhir:display [ fhir:v "Medical Oncology Physician" ]
     ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

