SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
EventRescheduled
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
EventStatusType
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated.)
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated.)