schedule_describe
Validate and preview schedule configurations for automation tasks without saving. Generate a schedule description from cron or frequency inputs to confirm correctness before applying.
Instructions
Validate and preview/describe a schedule configuration without saving it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| taskId | Yes | The unique ID of the task. | |
| frequency | No | The frequency mode. Used if scheduleMode is 'frequency'. | |
| dayOfMonth | No | Day of the month (1-31) if frequency is 'monthly'. | |
| daysOfWeek | No | Array of days of the week if frequency is 'weekly'. | |
| scheduleHour | No | Hour of execution (0-23) if frequency is 'daily', 'weekly', or 'monthly'. | |
| scheduleMode | Yes | Whether to define the schedule using 'cron' or structured 'frequency' fields. | |
| cronExpression | No | Standard 5-field cron expression. Used if scheduleMode is 'cron'. | |
| scheduleMinute | No | Minute of execution (0-59) if frequency is 'daily', 'weekly', or 'monthly'. | |
| intervalMinutes | No | Interval in minutes if frequency is 'interval'. |