@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 -------------------------------------------------------------------

<http://hl7.org/fhir/us/core/Practitioner/practitioner-1> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "practitioner-1"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner|7.0.0"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner|7.0.0>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Practitioner</b><a name=\"practitioner-1\"> </a><a name=\"hcpractitioner-1\"> </a></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 Practitioner &quot;practitioner-1&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-us-core-practitioner.html\">US Core Practitioner Profile (version 7.0.0)</a></p></div><p><b>identifier</b>: <a href=\"http://terminology.hl7.org/5.3.0/NamingSystem-npi.html\" title=\"National Provider Identifier\">United States National Provider Identifier</a>/9941339100, <code>http://www.acme.org/practitioners</code>/25456</p><p><b>name</b>: Ronald Bone </p><p><b>address</b>: 1003 HEALTHCARE DR AMHERST MA 01002 (work)</p></div>"
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://hl7.org/fhir/sid/us-npi"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "9941339100" ]
  ] [
     fhir:extension ( [
       fhir:url [ fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-jurisdiction"^^xsd:anyURI ] ;
       fhir:value [
         a fhir:CodeableConcept ;
         fhir:coding ( [
           fhir:system [ fhir:v "https://www.usps.com/"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "MA" ]
         ] ) ;
         fhir:text [ fhir:v "Massachusetts" ]
       ]
     ] ) ;
     fhir:system [ fhir:v "http://www.acme.org/practitioners"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "25456" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Bone" ] ;
     fhir:given ( [ fhir:v "Ronald" ] ) ;
     fhir:prefix ( [ fhir:v "Dr" ] )
  ] ) ; # 
  fhir:address ( [
     fhir:use [ fhir:v "work" ] ;
     fhir:line ( [ fhir:v "1003 HEALTHCARE DR" ] ) ;
     fhir:city [ fhir:v "AMHERST" ] ;
     fhir:state [ fhir:v "MA" ] ;
     fhir:postalCode [ fhir:v "01002" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

