ExecutionModel Data Type

Model for a scheduler exection.

Properties
name data type constraints description
id number   Execution ID
scheduleId number   Schedule ID
startTime number   Start time
endTime number   End time
duration number   Duration
result boolean   Result
log string   Command output
running boolean required boolean Check whether the execution is still running

Example

{
  "id" : 12345,
  "scheduleId" : 12345,
  "startTime" : 12345,
  "endTime" : 12345,
  "duration" : 12345,
  "result" : true,
  "log" : "...",
  "running" : true
}