PREFIX rdf: PREFIX rdfs: PREFIX xsd: PREFIX owl: PREFIX swrl: PREFIX swrlb: PREFIX vitro: PREFIX vivo: PREFIX bibo: PREFIX dcterms: PREFIX event: PREFIX foaf: PREFIX skos: PREFIX core: Construct { _:sdtv a core:DateTimeValue . _:sdtv core:dateTime ?theStartYear . _:sdtv core:dateTimePrecision core:yearPrecision . _:edtv a core:DateTimeValue . _:edtv core:dateTime ?theEndYear . _:edtv core:dateTimePrecision core:yearPrecision . _:dti a core:DateTimeInterval . _:dti core:start _:sdtv . _:dti core:end _:edtv . ?thing core:dateTimeInterval _:dti . _:dti core:dateTimeIntervalFor ?thing . } where { ?thing core:startYear ?theStartYear . ?thing core:endYear ?theEndYear . }