@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/pacio-adi/Practitioner/Practitioner-MargaretReynolds> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Practitioner-MargaretReynolds"] ; # 
  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 Practitioner-MargaretReynolds</b></p><a name=\"Practitioner-MargaretReynolds\"> </a><a name=\"hcPractitioner-MargaretReynolds\"> </a><p><b>identifier</b>: <code>http://example.org/fhir/MI-state-license</code>/86420</p><p><b>active</b>: true</p><p><b>name</b>: Margaret Q. Reynolds</p><p><b>telecom</b>: ph: (555) 391-9414</p><p><b>address</b>: 18051 Mack Ave, Detroit, MI 48224</p><p><b>gender</b>: Female</p></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://example.org/fhir/MI-state-license"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "86420" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:name ( [
     fhir:text [ fhir:v "Margaret Q. Reynolds" ] ;
     fhir:family [ fhir:v "Reynolds" ] ;
     fhir:given ( [ fhir:v "Margaret" ] [ fhir:v "Q." ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "(555) 391-9414" ]
  ] ) ; # 
  fhir:address ( [
     fhir:text [ fhir:v "18051 Mack Ave, Detroit, MI 48224" ] ;
     fhir:line ( [ fhir:v "18051 Mack Ave" ] ) ;
     fhir:city [ fhir:v "Detroit" ] ;
     fhir:state [ fhir:v "MI" ] ;
     fhir:postalCode [ fhir:v "48224" ] ;
     fhir:country [ fhir:v "US" ]
  ] ) ; # 
  fhir:gender [ fhir:v "female"] . # 

# -------------------------------------------------------------------------------------

