See run result mock-data for example.
Format of name of json for run_result: timestamp_random.json (encoded)
batch_folder and batch_file have the same value.
{
"status": "waiting",
"batch_file": "batch_file.json"
"input_file": <string>, // Format as "batch_folder/run_folder/name.dps",
"query_files": [
<string>, // Format as "batch_folder/run_folder/query_file.json"
...,
<string>
],
"warnings": [ <string> ] (optional) // Warnings about the user inputs
}
waiting +
{
"status": "in_progress",
...
"start_time": <int> // Timestamp
}
waiting +
{
"status": "canceled",
...
"start_time": <int>, // Timestamp
"end_time": <int> // Timestamp. When it has been canceled
}
waiting +
{
"status": "internal_error",
...
"start_time": <int>, // Timestamp
"end_time": <int>, // Timestamp. When the error occurs
"error_msg": <string>
}
waiting +
{
"status": "canceled",
...
"start_time": <int>, // Timestamp
"end_time": <int> // Timestamp
}