diff options
author | Jonas <dr@jones.dk> | 2013-06-01 12:16:33 +0200 |
---|---|---|
committer | Jonas <dr@jones.dk> | 2013-06-01 12:16:33 +0200 |
commit | 8bee3d8e43b15619327694fa47ba6050e5bd91cd (patch) | |
tree | e38b8363fe88ac1d7a4b8f220193ff00437da66d /data | |
parent | b7718b2777af8e69d46081c1f29f66829fd775bd (diff) |
Add Ø-butikken with opening hours.
Diffstat (limited to 'data')
-rw-r--r-- | data/org/oe-butikken.ttl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/data/org/oe-butikken.ttl b/data/org/oe-butikken.ttl new file mode 100644 index 0000000..2916c9c --- /dev/null +++ b/data/org/oe-butikken.ttl @@ -0,0 +1,21 @@ +@prefix foaf: <http://xmlns.com/foaf/0.1/> . +@prefix gr: <http://purl.org/goodrelations/v1#> . +@prefix schema: <http://schema.org/> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +[] + a schema:Place; + gr:category "shop"; + gr:name "Ø-butikken"@da; + schema:email "obutikken@mail.dk"; + gr:hasOpeningHourSpecification [ + a gr:OpeningHourSpecification ; + gr:hasOpeningHoursDayOfWeek gr:Tuesday, gr:Wednesday, gr:Thursday, gr:Friday ; + gr:opens "10:00:00"^^xsd:time ; + gr:closes "16:00:00"^^xsd:time ; + ], [ + a gr:OpeningHourSpecification ; + gr:hasOpeningHoursDayOfWeek gr:Saturday, gr:Sunday, gr:PublicHolidays ; + gr:opens "10:00:00"^^xsd:time ; + gr:closes "14:00:00"^^xsd:time ; + ] . |