A schedule.
name | data type | type | namespace | min/max occurs | description |
---|---|---|---|---|---|
at | time | element | 0/1 | For once-a-day schedules, this is the time (GMT) at which the schedule should activate. | |
enabled | boolean | element | 0/1 | Indicates whether or not this schedule is enabled. | |
every | time | element | 0/1 | For repeating schedules, this is the interval with which the schedule activates.
Valid time values are 0:15, 0:30, 0:45, 1:00, 2:00, 3:00, 4:00, 6:00, 8:00 and 12:00 |
|
selected_days | selectedDays | element | 0/1 | If "when" is "selected_days", this defines on which days the schedule is active. | |
when | string | element | 0/1 | Can be "daily" or "selected_days". If "selected_days", the "selected_days" field should also be set. |
Example
<schedule> <enabled>...</enabled> <when>...</when> <selected_days> <sun>...</sun> <mon>...</mon> <tue>...</tue> <wed>...</wed> <thu>...</thu> <fri>...</fri> <sat>...</sat> </selected_days> <at> <hour>...</hour> <minute>...</minute> </at> <every> <hour>...</hour> <minute>...</minute> </every> </schedule>