@base . @prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix foaf: . @prefix oh: <#> . @prefix dct: . @prefix xsd: . @prefix voaf: . @prefix vann: . <> dct:creator [ foaf:mbox "Pieter.Colpaert@UGent.be" ; foaf:name "Pieter Colpaert" ], [ foaf:mbox "Laurens.DeVocht@UGent.be" ; foaf:name "Laurens De Vocht" ], [ foaf:mbox "Anastasia.Dimou@UGent.be" ; foaf:name "Anastasia Dimou" ], [ foaf:mbox "Steven.Verstockt@UGent.be" ; foaf:name "Steven Verstockt" ] ; dct:description "A vocabulary to describe opening hours using calendars (recommended: iCal, RDFCal or schema.org) published on the Web." ; dct:issued "2013-12-05"^^xsd:date ; dct:modified "2015-05-22"^^xsd:date ; dct:title "The Opening Hours vocabulary"@en ; vann:preferredNamespacePrefix "oh" ; vann:preferredNamespaceUri <#> ; a voaf:Vocabulary, owl:Ontology . oh:Calendar a owl:Class ; rdfs:comment "A calendar which can be used for opening hours" ; rdfs:isDefinedBy <> ; rdfs:label "A calendar" ; rdfs:subClassOf owl:Thing . oh:OpeningHours a owl:Class ; rdfs:comment "A class to identify opening hours" ; rdfs:isDefinedBy <> ; rdfs:label "Opening Hours" ; rdfs:subClassOf owl:Thing . oh:OpeningHoursType a owl:Class ; rdfs:comment "A class to identify the type of opening hours" ; rdfs:isDefinedBy <> ; rdfs:label "Opening Hours Type" ; rdfs:subClassOf owl:Thing . oh:calendar a owl:ObjectProperty ; rdfs:comment "A property to tell oh:OpeningHours to keep this calendar into account"@en ; rdfs:domain oh:Calendar ; rdfs:range rdf:List . oh:closinghours a owl:DatatypeProperty ; rdfs:comment "Tell whether or not this oh:Calendar specifies closing hours." ; rdfs:domain xsd:boolean ; rdfs:label "Are Closing Hours" ; rdfs:range oh:Calendar . oh:hasOpeningHours a owl:DatatypeProperty ; rdfs:comment "Link a certain thing to a description of opening hours" ; rdfs:label "Has Opening Hours" ; rdfs:range oh:OpeningHours . oh:type a owl:ObjectProperty ; rdfs:comment "Give a type to an oh:OpeningHours instance"@en ; rdfs:domain oh:Calendar ; rdfs:label "has Opening Hours Type" ; rdfs:range oh:OpeningHoursType .