@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-crd/Practitioner/full> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "full"] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"><p class=\"res-header-id\"><b>Generated Narrative: Practitioner full</b></p><a name=\"full\"> </a><a name=\"hcfull\"> </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\">Language: en</p></div><p><b>identifier</b>: <code>http://example.org/some-code-system</code>/9941339108, <a href=\"http://terminology.hl7.org/7.0.1/NamingSystem-npi.html\" title=\"National Provider Identifier\">United States National Provider Identifier</a>/1234567893, <a href=\"http://terminology.hl7.org/6.2.0/NamingSystem-USEIN.html\" title=\"An Employer Identification Number (EIN) is also known as a Federal Tax Identification Number, and is used to identify a business entity.\">United States Employer Identification Number</a>/123456789</p><p><b>name</b>: Bone </p><p><b>telecom</b>: ph: 1-234-567-8900, <a href=\"mailto:bones@example.org\">bones@example.org</a></p><p><b>address</b>: </p><ul><li>Suite 100 101 Some Street Las Vegas CA 99999 U.S.A. </li><li>Care of Docs R Us 123 Another Street Vancouver BC V1A 2B3 </li></ul><blockquote><p><b>qualification</b></p><p><b>code</b>: <span title=\"Codes:\">Cardiologist</span></p></blockquote><blockquote><p><b>qualification</b></p><p><b>code</b>: <span title=\"Codes:\">Surgeon</span></p></blockquote></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "http://example.org/some-code-system"^^xsd:anyURI ;
       fhir:l <http://example.org/some-code-system>
     ] ;
     fhir:value [ fhir:v "9941339108" ]
  ] [
     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 "1234567893" ]
  ] [
     fhir:system [
       fhir:v "urn:oid:2.16.840.1.113883.4.4"^^xsd:anyURI ;
       fhir:l <urn:oid:2.16.840.1.113883.4.4>
     ] ;
     fhir:value [ fhir:v "123456789" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Bone" ]
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "1-234-567-8900" ]
  ] [
     fhir:system [ fhir:v "email" ] ;
     fhir:value [ fhir:v "bones@example.org" ]
  ] ) ; # 
  fhir:address ( [
     fhir:line ( [ fhir:v "Suite 100" ] [ fhir:v "101 Some Street" ] ) ;
     fhir:city [ fhir:v "Las Vegas" ] ;
     fhir:state [ fhir:v "CA" ] ;
     fhir:postalCode [ fhir:v "99999" ] ;
     fhir:country [ fhir:v "U.S.A." ]
  ] [
     fhir:line ( [ fhir:v "Care of Docs R Us" ] [ fhir:v "123 Another Street" ] ) ;
     fhir:city [ fhir:v "Vancouver" ] ;
     fhir:state [ fhir:v "BC" ] ;
     fhir:postalCode [ fhir:v "V1A 2B3" ]
  ] ) ; # 
  fhir:qualification ( [
     fhir:code [
       fhir:text [ fhir:v "Cardiologist" ]
     ]
  ] [
     fhir:code [
       fhir:text [ fhir:v "Surgeon" ]
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

