in src/core.js [444:458]
createNewResult(source, options) {
let nowtime = Date.now();
let newResult = {
id: nowtime,
gatherer: source.gatherer,
status: Status.SUBMITTED,
label: source.label,
createdTimestamp: nowtime,
modifiedTimestamp: nowtime,
errors: source.errors || [],
}
return newResult;
}