Model of the status of a scheduler job
| name | data type | description |
|---|---|---|
| id | number | Job ID |
| start | number | Timestamp of the job start |
| end | number | Timestamp of the job end |
| returnValue | number | Return value of the job execution |
| name | string | Job Name |
| active | boolean | True, when the job is currently active (eligible for execution) |
Example
{
"id" : 12345,
"start" : 12345,
"end" : 12345,
"returnValue" : 12345,
"name" : "...",
"active" : true
}