SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
OpeningHoursSpecification
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
Class
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
A structured value providing information about the opening hours of a place or a certain service inside a place.\n\n
The place is __open__ if the [[opens]] property is specified, and __closed__ otherwise.\n\nIf the value for the [[closes]] property is less than the value for the [[opens]] property then the hour range is assumed to span over the next day.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
A structured value providing information about the opening hours of a place or a certain service inside a place.\n\n
The place is __open__ if the [[opens]] property is specified, and __closed__ otherwise.\n\nIf the value for the [[closes]] property is less than the value for the [[opens]] property then the hour range is assumed to span over the next day.
Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.