Type Alias Schedule

Schedule: {
    args?: ScriptArgs;
    edited_at: string;
    edited_by: string;
    email: string;
    enabled: boolean;
    error?: string;
    extra_perms: {
        [key: string]: boolean;
    };
    is_flow: boolean;
    no_flow_overlap?: boolean;
    on_failure?: string;
    on_failure_exact?: boolean;
    on_failure_extra_args?: ScriptArgs;
    on_failure_times?: number;
    on_recovery?: string;
    on_recovery_extra_args?: ScriptArgs;
    on_recovery_times?: number;
    path: string;
    retry?: Retry;
    schedule: string;
    script_path: string;
    summary?: string;
    tag?: string;
    timezone: string;
    ws_error_handler_muted?: boolean;
}