JobStatus Data Type

Model of the status of a scheduler job

Properties
name data type constraints description
id number required int Job ID
start number required int Timestamp of the job start
end number required int Timestamp of the job end
returnValue number required int Return value of the job execution
name string   Job Name
active boolean required boolean True, when the job is currently active (eligible for execution)

Example

{
  "id" : 12345,
  "start" : 12345,
  "end" : 12345,
  "returnValue" : 12345,
  "name" : "...",
  "active" : true
}