@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 -------------------------------------------------------------------

<https://fhir.apps.health/Location/cedarbrook-site-a> a fhir:Location ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "cedarbrook-site-a"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://fhir.apps.health/StructureDefinition/polaris-core-location"^^xsd:anyURI ;
       fhir:link <https://fhir.apps.health/StructureDefinition/polaris-core-location>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>Cedarbrook Family Health - Site A, postal code T2N 1A1.</p></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-location-identifier"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "cedarbrook-site-a" ]
  ] [
     fhir:use [ fhir:v "usual" ] ;
     fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/on-sli-code"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "CBRK01" ]
  ] ) ; # 
  fhir:name [ fhir:v "Cedarbrook Family Health - Site A"] ; # 
  fhir:address [
     fhir:postalCode [ fhir:v "T2N 1A1" ]
  ] ; # 
  fhir:managingOrganization [
     fhir:identifier [
       fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/organization-identifier"^^xsd:anyURI ] ;
       fhir:value [ fhir:v "cedarbrook-clinic" ]
     ]
  ] . # 

# -------------------------------------------------------------------------------------

