summaryrefslogtreecommitdiff
path: root/data/org/artdoor.ttl
blob: b01e6101ae670fae56263887ddd8a7acff7c1ed7 (plain)
  1. @prefix : <http://data.biks.dk/artdoor/> .
  2. @prefix foaf: <http://xmlns.com/foaf/0.1/> .
  3. @prefix gr: <http://purl.org/goodrelations/v1#> .
  4. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  5. @prefix schema: <http://schema.org/> .
  6. @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
  7. :home
  8. a schema:Place;
  9. gr:category schema:ArtGallery, "art" ;
  10. gr:name "Galleri ArtDoor"@da;
  11. foaf:Homepage <http://www.galleriartdoor.dk/>;
  12. gr:hasOpeningHourSpecification :hours .
  13. :shop
  14. a schema:Place;
  15. gr:category "non-grocery store", schema:InternetCafe, "printshop" ;
  16. gr:name "ArtDoor Butikken"@da;
  17. foaf:Homepage <http://www.galleriartdoor.dk/artdoor-butikken.html>;
  18. gr:hasOpeningHourSpecification :hoursSummer .
  19. :cafe
  20. a schema:Place;
  21. gr:category schema:FoodEstablishment, schema:CafeOrCoffeeShop, "non-meal food" ;
  22. gr:name "Kaffe & Te huset"@da;
  23. foaf:Homepage <http://www.galleriartdoor.dk/kaffe---te-huset.html>;
  24. gr:hasOpeningHourSpecification :hoursSummer .
  25. :hours
  26. a gr:OpeningHourSpecification ;
  27. gr:hasOpeningHoursDayOfWeek gr:Saturday, gr:Sunday ;
  28. gr:opens "12:00:00"^^xsd:time ;
  29. gr:closes "18:00:00"^^xsd:time .
  30. :hoursSummer
  31. a gr:OpeningHourSpecification ;
  32. rdfs:comment "kun sommerhalvåret" ;
  33. gr:hasOpeningHoursDayOfWeek gr:Saturday, gr:Sunday ;
  34. gr:opens "12:00:00"^^xsd:time ;
  35. gr:closes "18:00:00"^^xsd:time .
  36. :org
  37. a gr:BusinessEntity ;
  38. schema:location :home, :shop, :cafe .