nexus-agents - v2.80.0
    Preparing search index...

    Interface CorroborationEvent

    Corroboration validation result.

    interface CorroborationEvent {
        id: string;
        timestamp: string;
        component: string;
        type: "corroboration";
        actionType:
            | "GeneratePatchPlan"
            | "DraftReply"
            | "ProposeLabels"
            | "SummarizeIssue"
            | "ClassifyIssue"
            | "IdentifyDuplicates"
            | "RequestHumanApproval"
            | "RefuseAction"
            | "HandoffMessage";
        satisfied: boolean;
        sourceCount: number;
        missingRequirements: readonly string[];
    }

    Hierarchy

    • AuditEventBase
      • CorroborationEvent
    Index

    Properties

    id: string
    timestamp: string
    component: string
    type: "corroboration"
    actionType:
        | "GeneratePatchPlan"
        | "DraftReply"
        | "ProposeLabels"
        | "SummarizeIssue"
        | "ClassifyIssue"
        | "IdentifyDuplicates"
        | "RequestHumanApproval"
        | "RefuseAction"
        | "HandoffMessage"
    satisfied: boolean
    sourceCount: number
    missingRequirements: readonly string[]