@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 -------------------------------------------------------------------

<urn://example.com/ph-ereferral/fhir/Organization/ExampleERefReceivingHospital> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExampleERefReceivingHospital"] ; # 
  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: Organization ExampleERefReceivingHospital</b></p><a name=\"ExampleERefReceivingHospital\"> </a><a name=\"hcExampleERefReceivingHospital\"> </a><p><b>identifier</b>: <code>urn:oid:2.16.840.1.113883.2.9.4.1.1</code>/HOSP-QC-001</p><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/organization-type prov}\">Healthcare Provider</span></p><p><b>name</b>: Philippine Heart Center</p><p><b>address</b>: East Avenue Quezon City Metro Manila 1100 PH </p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "urn:oid:2.16.840.1.113883.2.9.4.1.1"^^xsd:anyURI ;
       fhir:l <urn:oid:2.16.840.1.113883.2.9.4.1.1>
     ] ;
     fhir:value [ fhir:v "HOSP-QC-001" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:type ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/organization-type"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/organization-type>
       ] ;
       fhir:code [ fhir:v "prov" ] ;
       fhir:display [ fhir:v "Healthcare Provider" ]
     ] )
  ] ) ; # 
  fhir:name [ fhir:v "Philippine Heart Center"] ; # 
  fhir:address ( [
     fhir:line ( [ fhir:v "East Avenue" ] ) ;
     fhir:city [ fhir:v "Quezon City" ] ;
     fhir:state [ fhir:v "Metro Manila" ] ;
     fhir:postalCode [ fhir:v "1100" ] ;
     fhir:country [ fhir:v "PH" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

