blob: 31001cbc83596caccef76e97e4777b1a9cc0fa4a (
plain)
- @prefix : <http://data.biks.dk/hestebedgård/> .
- @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:category schema:Museum, "park or museum" ;
- gr:name "Hestebedgård" ;
- foaf:Homepage <http://hestebedgård.dk/> ;
- schema:email "kontakt@xn--hestebedgrd-58a.dk" ;
- schema:telephone "+45-59470225" ;
- schema:address :address ;
- gr:hasOpeningHourSpecification [
- a gr:OpeningHourSpecification ;
- gr:validFrom "2013-03-01T00:00:00Z"^^xsd:dateTime ;
- gr:validThrough "2013-10-31T00:00:00Z"^^xsd:dateTime ;
- gr:hasOpeningHoursDayOfWeek gr:Wednesday ;
- gr:opens "14:00:00"^^xsd:time ;
- gr:closes "16:00:00"^^xsd:time ;
- ], [
- a gr:OpeningHourSpecification ;
- gr:validFrom "2013-03-01T00:00:00Z"^^xsd:dateTime ;
- gr:validThrough "2013-10-31T00:00:00Z"^^xsd:dateTime ;
- gr:hasOpeningHoursDayOfWeek gr:Saturday ;
- gr:opens "10:00:00"^^xsd:time ;
- gr:closes "12:00:00"^^xsd:time ;
- ] .
- :org
- a gr:BusinessEntity ;
- gr:name "Hestebedgårds Venneforening" ;
- foaf:Homepage <http://hestebedgård.dk/html/Selvejende_institution.html> ;
- schema:location :home .
- :address
- a schema:PostalAddress;
- schema:streetAddress "Kattekærstrædet 10, Orø"@da;
- schema:postalCode "4300";
- schema:addressLocality "Holbæk, Danmark"@da .
|