@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/dme-orders/Practitioner/practitioner-1> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "practitioner-1"] ; # 
  fhir:meta [
     fhir:versionId [ fhir:v "16" ] ;
     fhir:lastUpdated [ fhir:v "2020-12-19T02:15:54.331Z"^^xsd:dateTime ]
  ] ; # 
  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></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; Version &quot;16&quot; Updated &quot;2020-12-19 02:15:54+0000&quot; </p></div><p><b>identifier</b>: id: 9941339108, id: 25456</p><p><b>name</b>: Ronald Bone </p><p><b>address</b>: 1003 Healthcare Drive Amherst MA 01002 (HOME)</p></div>"
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://hl7.org.fhir/sid/us-npi"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "9941339108" ]
  ] [
     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 "home" ] ;
     fhir:line ( [ fhir:v "1003 Healthcare Drive" ] ) ;
     fhir:city [ fhir:v "Amherst" ] ;
     fhir:state [ fhir:v "MA" ] ;
     fhir:postalCode [ fhir:v "01002" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

