Anchorage API reference
    Preparing search index...

    The structured audit event a tick emits per fire attempt (accepted OR not).

    interface ScheduleTickAuditEvent {
        outcome: ScheduleFireOutcome;
        reason?: string;
        runId?: string;
        scheduleId: string;
        target: "agent" | "workflow";
        tenantId?: string;
        timestamp: string;
        type: "schedule.fire";
    }
    Index

    Properties

    reason?: string

    Present for non-published outcomes: the structured reason.

    runId?: string

    The minted runId for a published fire.

    scheduleId: string
    target: "agent" | "workflow"
    tenantId?: string

    The resolved tenant, or undefined when the row's metadata.tenantId is invalid.

    timestamp: string
    type: "schedule.fire"