prorm API Reference
    Preparing search index...

    Interface VerificationSchedule

    interface VerificationSchedule {
        frequency: "daily" | "weekly" | "monthly";
        dayOfWeek?: number;
        dayOfMonth?: number;
        time: string;
        nextRun?: Date;
        active: boolean;
    }
    Index
    frequency: "daily" | "weekly" | "monthly"

    Frequency of verification

    dayOfWeek?: number

    Day of week for weekly (0=sunday, 6=saturday)

    dayOfMonth?: number

    Day of month for monthly (1-31)

    time: string

    Time in HH:MM format (24-hour)

    nextRun?: Date

    Next scheduled run

    active: boolean

    Whether the schedule is active