@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://fhir.ehdsi.eu/core/Location/c9d0e1f2-a3b4-5678-cdef-789012345678> a fhir:Location ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "c9d0e1f2-a3b4-5678-cdef-789012345678"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://fhir.ehdsi.eu/core/StructureDefinition/location-myhealtheu-core"^^xsd:anyURI ;
       fhir:l <http://fhir.ehdsi.eu/core/StructureDefinition/location-myhealtheu-core>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">Cardiology Ward - University Hospital Berlin</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "http://example.org/location-ids"^^xsd:anyURI ;
       fhir:l <http://example.org/location-ids>
     ] ;
     fhir:value [ fhir:v "LOC-CARDIO-001" ]
  ] ) ; # 
  fhir:name [ fhir:v "Cardiology Ward"] ; # 
  fhir:type ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/v3-RoleCode>
       ] ;
       fhir:code [ fhir:v "CARD" ] ;
       fhir:display [ fhir:v "Cardiology clinic" ]
     ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "+49-30-1234568" ]
  ] ) ; # 
  fhir:address [
     fhir:line ( [ fhir:v "Charitéplatz 1" ] ) ;
     fhir:city [ fhir:v "Berlin" ] ;
     fhir:postalCode [ fhir:v "10117" ] ;
     fhir:country [ fhir:v "DE" ]
  ] ; # 
  fhir:managingOrganization [
     fhir:l <http://fhir.ehdsi.eu/core/Organization/ff4d98d1-69c9-43db-896e-58d11c15662c> ;
     fhir:reference [ fhir:v "Organization/ff4d98d1-69c9-43db-896e-58d11c15662c" ]
  ] . # 

# -------------------------------------------------------------------------------------

