SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
bed
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
Property
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.
If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.
If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.