@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/vrdr/Practitioner/Pronouncer-Example1> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Pronouncer-Example1"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Practitioner Pronouncer-Example1</b></p><a name=\"Pronouncer-Example1\"> </a><a name=\"hcPronouncer-Example1\"> </a><a name=\"Pronouncer-Example1-en-US\"> </a><p><b>identifier</b>: <a href=\"http://terminology.hl7.org/5.0.0/NamingSystem-npi.html\" title=\"National Provider Identifier\">NPI</a>/9941339101</p><p><b>name</b>: Jane Purple (Official)</p><p><b>address</b>: 44 South Street Rockville MD 20854 US </p></div>"
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://hl7.org/fhir/sid/us-npi"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "9941339101" ]
  ] ) ; # 
  fhir:name ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:family [ fhir:v "Purple" ] ;
     fhir:given ( [ fhir:v "Jane" ] )
  ] ) ; # 
  fhir:address ( [
     fhir:line ( [ fhir:v "44 South Street" ] ) ;
     fhir:city [ fhir:v "Rockville" ] ;
     fhir:state [ fhir:v "MD" ] ;
     fhir:postalCode [ fhir:v "20854" ] ;
     fhir:country [ fhir:v "US" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

