Schedule
Defines when an action will run — either once or recurring
TypeScript
export interfaceProperties
| Property | Type | Description |
|---|---|---|
| CronExpression | string | Standard 5-field cron (minute hour day-of-month month day-of-week); e.g. weekdays at 09:30 → 30 9 * * 1-5 |
| IsOneOff | boolean | If true, the schedule runs once (using RunAt) |
| RunAt | string | ISO datetime for a one-off run (local time); set when IsOneOff is true |
Property Details
CronExpression
Standard 5-field cron (minute hour day-of-month month day-of-week); e.g. weekdays at 09:30 → 30 9 * * 1-5
TypeScript
CronExpression?: string;Property Value
string
IsOneOff
If true, the schedule runs once (using RunAt)
TypeScript
IsOneOff: boolean;Property Value
boolean
RunAt
ISO datetime for a one-off run (local time); set when IsOneOff is true
TypeScript
RunAt?: string;Property Value
string