@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/davinci-pct/Practitioner/prac001> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "prac001"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/davinci-pct/StructureDefinition/davinci-pct-practitioner"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/davinci-pct/StructureDefinition/davinci-pct-practitioner>
     ] )
  ] ; # 
  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: Practitioner prac001</b></p><a name=\"prac001\"> </a><a name=\"hcprac001\"> </a><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\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-davinci-pct-practitioner.html\">PCT Practitioner</a></p></div><p><b>identifier</b>: <a href=\"http://terminology.hl7.org/5.5.0/NamingSystem-npi.html\" title=\"National Provider Identifier\">United States National Provider Identifier</a>/9941339100</p><p><b>active</b>: true</p><p><b>name</b>: Patricia	Primary</p><p><b>telecom</b>: ph: 781-232-3231</p><p><b>address</b>: 32 Fruit Street, Boston MA 02114</p><p><b>gender</b>: Female</p></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 "9941339100" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:name ( [
     fhir:text [ fhir:v "Patricia	Primary" ] ;
     fhir:family [ fhir:v "Primary" ] ;
     fhir:given ( [ fhir:v "Patricia" ] ) ;
     fhir:prefix ( [ fhir:v "Dr." ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "781-232-3231" ]
  ] ) ; # 
  fhir:address ( [
     fhir:text [ fhir:v "32 Fruit Street, Boston MA 02114" ]
  ] ) ; # 
  fhir:gender [ fhir:v "female"] . # 

# -------------------------------------------------------------------------------------

