SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
itinerary
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
Property
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
Destination(s) ( [[Place]] ) that make up a trip. For a trip where destination order is important use [[ItemList]] to specify that order (see examples).
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
Destination(s) ( [[Place]] ) that make up a trip. For a trip where destination order is important use [[ItemList]] to specify that order (see examples).