FlowGuard API - v1.2.0-rc.2
    Preparing search index...

    Interface EvidenceSlotStatus

    Status of a single evidence slot.

    interface EvidenceSlotStatus {
        slot: string;
        label: string;
        required: boolean;
        present: boolean;
        status: "complete" | "missing" | "not_yet_required" | "failed";
        detail?: string;
        artifactKind?: string;
    }
    Index

    Properties

    slot: string

    Slot identifier (e.g., "ticket", "plan", "validation").

    label: string

    Human-readable label.

    required: boolean

    Whether this slot is required at the current phase.

    present: boolean

    Whether evidence is present in the state.

    status: "complete" | "missing" | "not_yet_required" | "failed"

    Evaluated status.

    detail?: string

    Optional detail (digest, iteration count, etc.).

    artifactKind?: string

    Canonical artifact kind for this slot, when applicable.