@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/uv/vhdir/Organization/independencerehab> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "independencerehab"] ; #  Example describing demographic information about Independence Rehabilitation Services, Inc. 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/uv/vhdir/StructureDefinition/vhdir-organization"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/uv/vhdir/StructureDefinition/vhdir-organization>
     ] )
  ] ; # 
  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: Organization independencerehab</b></p><a name=\"independencerehab\"> </a><a name=\"hcindependencerehab\"> </a><a name=\"independencerehab-en-US\"> </a><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/organization-type prov}\">Rehabilitation services provider</span></p><p><b>name</b>: Independence Rehabilitation Services, Inc.</p></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:active [ fhir:v "true"^^xsd:boolean] ; # 
  fhir:type ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/organization-type"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "prov" ] ;
       fhir:display [ fhir:v "Healthcare Provider" ]
     ] ) ;
     fhir:text [ fhir:v "Rehabilitation services provider" ]
  ] ) ; # 
  fhir:name [ fhir:v "Independence Rehabilitation Services, Inc."] . # 

# -------------------------------------------------------------------------------------

