SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
Motel
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
Class
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
A motel.
<br /><br />
See also the <a href="/docs/hotels.html">dedicated document on the use of schema.org for marking up hotels and other forms of accommodations</a>.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
A motel.
<br /><br />
See also the <a href="/docs/hotels.html">dedicated document on the use of schema.org for marking up hotels and other forms of accommodations</a>.