Schedule

Defines when an action will run — either once or recurring

TypeScript
export interface

Properties

PropertyTypeDescription
CronExpressionstringStandard 5-field cron (minute hour day-of-month month day-of-week); e.g. weekdays at 09:30 → 30 9 * * 1-5
IsOneOffbooleanIf true, the schedule runs once (using RunAt)
RunAtstringISO 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