summaryrefslogtreecommitdiff
path: root/data/org/hegnegaard.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'data/org/hegnegaard.ttl')
-rw-r--r--data/org/hegnegaard.ttl32
1 files changed, 32 insertions, 0 deletions
diff --git a/data/org/hegnegaard.ttl b/data/org/hegnegaard.ttl
new file mode 100644
index 0000000..99cfa2d
--- /dev/null
+++ b/data/org/hegnegaard.ttl
@@ -0,0 +1,32 @@
+@prefix : <http://data.biks.dk/hegnegaard/> .
+@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#> .
+
+:home
+ a schema:Place;
+ gr:name "Hegnegaarden" ;
+ schema:address :address .
+
+:org
+ a gr:BusinessEntity ;
+ gr:category "accomodation", "convention center" ;
+ gr:name "Hegnegårdens Udviklingscenter" ;
+ foaf:Homepage <http://hegnegaarden.dk/> ;
+ schema:location :home ;
+ schema:email "mail@hegnegaarden.dk" ;
+ schema:telephone "+45-59470343" ;
+ gr:hasOpeningHourSpecification [
+ a gr:OpeningHourSpecification ;
+ rdfs:comment "telefonisk" ;
+ gr:opens "9:00:00"^^xsd:time ;
+ gr:closes "16:00:00"^^xsd:time ;
+ ] .
+
+:address
+ a schema:PostalAddress;
+ schema:streetAddress "Næsbyvej 28, Orø"@da;
+ schema:postalCode "4300";
+ schema:addressLocality "Holbæk, Danmark"@da .