summaryrefslogtreecommitdiff
path: root/data/org/bibliotek.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'data/org/bibliotek.ttl')
-rw-r--r--data/org/bibliotek.ttl30
1 files changed, 30 insertions, 0 deletions
diff --git a/data/org/bibliotek.ttl b/data/org/bibliotek.ttl
new file mode 100644
index 0000000..fb40faa
--- /dev/null
+++ b/data/org/bibliotek.ttl
@@ -0,0 +1,30 @@
+@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 schema:Place;
+ gr:category "public service";
+ gr:name "Orø Bibliotek";
+ foaf:Homepage <https://bibliotek.holbaek.dk/web/arena/aabningstider>;
+ schema:email "holbib@holb.dk";
+ schema:telephone "+45-72367519";
+ schema:address [
+ a schema:PostalAddress;
+ schema:streetAddress "Bygaden 50, Orø"@da;
+ schema:postalCode "4300";
+ schema:addressLocality "Holbæk, Danmark"@da;
+ ];
+ gr:hasOpeningHourSpecification [
+ a gr:OpeningHourSpecification ;
+ gr:hasOpeningHoursDayOfWeek gr:Wednesday ;
+ gr:opens "16:00:00"^^xsd:time ;
+ gr:closes "18:00:00"^^xsd:time ;
+ ], [
+ a gr:OpeningHourSpecification ;
+ rdfs:comment "første lørdag i måneden"@da;
+ gr:opens "10:00:00"^^xsd:time ;
+ gr:closes "12:00:00"^^xsd:time ;
+ ] .