@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://hl7.org/fhir/us/central-cancer-registry-reporting/Practitioner/1> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "1"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner|6.1.0"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner?version=6.1.0>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n  <p><b>Profile:</b> <a href=\"https://hl7.org/fhir/us/core/StructureDefinition-us-core-us-core-practitioner.html\">US Core Practitioner</a></p>\n  <p><b>Practitioner:</b> Dr. Joseph Nichols</p>\n  <p><b>Identifier:</b> US NPI: 1122334455</p>\n  <p><b>Address:</b> 1234 Main St., Tulsa, OK 74126, US (work)</p>\n  <p><b>Email:</b> joseph.nichols@example.com</p>\n  <p><b>Phone:</b> 800-277-1993</p>\n  </div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "http://hl7.org/fhir/sid/us-npi"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/sid/us-npi>
     ] ;
     fhir:value [ fhir:v "1122334455" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Nichols" ] ;
     fhir:given ( [ fhir:v "Joseph" ] ) ;
     fhir:prefix ( [ fhir:v "Dr" ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "email" ] ;
     fhir:value [ fhir:v "joseph.nichols@example.com" ] ;
     fhir:use [ fhir:v "work" ]
  ] [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "800-277-1993" ] ;
     fhir:use [ fhir:v "work" ]
  ] ) ; # 
  fhir:address ( [
     fhir:use [ fhir:v "work" ] ;
     fhir:line ( [ fhir:v "1234 Main St." ] ) ;
     fhir:city [ fhir:v "Tulsa" ] ;
     fhir:state [ fhir:v "OK" ] ;
     fhir:postalCode [ fhir:v "74126" ] ;
     fhir:country [ fhir:v "US" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

