blob: b01e6101ae670fae56263887ddd8a7acff7c1ed7 (
plain)
- @prefix : <http://data.biks.dk/artdoor/> .
- @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:ArtGallery, "art" ;
- gr:name "Galleri ArtDoor"@da;
- foaf:Homepage <http://www.galleriartdoor.dk/>;
- gr:hasOpeningHourSpecification :hours .
- :shop
- a schema:Place;
- gr:category "non-grocery store", schema:InternetCafe, "printshop" ;
- gr:name "ArtDoor Butikken"@da;
- foaf:Homepage <http://www.galleriartdoor.dk/artdoor-butikken.html>;
- gr:hasOpeningHourSpecification :hoursSummer .
- :cafe
- a schema:Place;
- gr:category schema:FoodEstablishment, schema:CafeOrCoffeeShop, "non-meal food" ;
- gr:name "Kaffe & Te huset"@da;
- foaf:Homepage <http://www.galleriartdoor.dk/kaffe---te-huset.html>;
- gr:hasOpeningHourSpecification :hoursSummer .
- :hours
- a gr:OpeningHourSpecification ;
- gr:hasOpeningHoursDayOfWeek gr:Saturday, gr:Sunday ;
- gr:opens "12:00:00"^^xsd:time ;
- gr:closes "18:00:00"^^xsd:time .
- :hoursSummer
- a gr:OpeningHourSpecification ;
- rdfs:comment "kun sommerhalvåret" ;
- gr:hasOpeningHoursDayOfWeek gr:Saturday, gr:Sunday ;
- gr:opens "12:00:00"^^xsd:time ;
- gr:closes "18:00:00"^^xsd:time .
- :org
- a gr:BusinessEntity ;
- schema:location :home, :shop, :cafe .
|