Jobs

A Job holds a set of Tasks to be scheduled.

A Job has the following elements:

  • ID is a unique string that identifies the Taks
  • Name is a textual short string used for display purposes
  • Description is a longer HTML string that can be used to hold a description of the Task
  • Attributes is an array of Job Attributes indexes
  • DateMini is the earliest valid time for the earliest Task's start time
  • DateMaxi is the latest valid time for the latest Task's end time
  • Tasks is an array of Tasks, it should not be empty

Example

{
   "ID": "OF001",
   "Name": "OF001",
   "DateMini": -8405,
   "DateMaxi": 34161,
   "Description": "description of this job goes here",
   "Tasks": [...]
}