blob: 99cfa2d67a7707618b9032a66b2bd9cfebcdd439 (
plain)
- @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 .
|