diff options
author | Jonas <dr@jones.dk> | 2013-06-01 16:43:49 +0200 |
---|---|---|
committer | Jonas <dr@jones.dk> | 2013-06-01 16:43:49 +0200 |
commit | b46c0535a85b9b1f8b3dca1578356bd91a4ec427 (patch) | |
tree | e7199d771acff519af22d5e9a0afd6537097348d /data | |
parent | 22d216c87e159a54dae87cd535b8f8d2c3889a79 (diff) |
Restructure, extend and update artdoor.
Diffstat (limited to 'data')
-rw-r--r-- | data/org/artdoor.ttl | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/data/org/artdoor.ttl b/data/org/artdoor.ttl index 0397014..e5e5adc 100644 --- a/data/org/artdoor.ttl +++ b/data/org/artdoor.ttl @@ -1,20 +1,32 @@ +@prefix : <http://data.biks.dk/artdoor/> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix gr: <http://purl.org/goodrelations/v1#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix schema: <http://schema.org/> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . -[] - a gr:BusinessEntity . - -_:artdoorGallery +:home a schema:Place; - gr:category "shop", "gallery", schema:FoodEstablishment, schema:CafeOrCoffeeShop ; + gr:category "gallery" ; gr:name "Galleri ArtDoor"@da; foaf:Homepage <http://www.galleriartdoor.dk/>; - gr:hasOpeningHourSpecification _:artdoorHours . + gr:hasOpeningHourSpecification :hours . + +:shop + a schema:Place; + gr:category "shop", schema:InternetCafe, "printshop" ; + gr:name "ArtDoor Butikken"@da; + foaf:Homepage <http://www.galleriartdoor.dk/artdoor-butikken.html>; + gr:hasOpeningHourSpecification :hours . -_:artdoorHours +:cafe + a schema:Place; + gr:category schema:FoodEstablishment, schema:CafeOrCoffeeShop ; + gr:name "Café ArtDoor7"@da; + foaf:Homepage <http://www.galleriartdoor.dk/cafe-artdoor7.html>; + gr:hasOpeningHourSpecification :hours . + +:hours a gr:OpeningHourSpecification ; rdfs:label "sommerhalvår" ; gr:validFrom "2013-05-01T00:00:00Z"^^xsd:dateTime ; @@ -22,3 +34,8 @@ _:artdoorHours gr:hasOpeningHoursDayOfWeek gr:Saturday, gr:Sunday ; gr:opens "12:00:00"^^xsd:time ; gr:closes "18:00:00"^^xsd:time . + +:org + a gr:BusinessEntity ; + gr:name "Marliese’s Gårdcafé"@da ; + schema:location :home, :cafe . |