SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
floorLevel
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
Property
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
The floor level for an [[Accommodation]] in a multi-storey building. Since counting
systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
The floor level for an [[Accommodation]] in a multi-storey building. Since counting
systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible.