Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface Incident

    interface Incident {
        affectedQuestionIds: string[];
        agentId: string;
        causalEdges: IncidentModel.CausalEdge[];
        createdTs: number;
        description: string;
        incident_hash: string;
        incidentId: string;
        postmortemRef: string | null;
        prev_incident_hash: string;
        resolvedTs: number | null;
        rootCauseClaimIds: string[];
        severity: IncidentModel.IncidentSeverity;
        signature: string;
        state: IncidentModel.IncidentState;
        timelineEventIds: string[];
        title: string;
        triggerId: string;
        triggerType:
            | "DRIFT"
            | "ASSURANCE_FAILURE"
            | "FREEZE"
            | "BUDGET_EXCEEDED"
            | "GOVERNANCE_VIOLATION"
            | "MANUAL";
        updatedTs: number;
    }
    Index
    affectedQuestionIds: string[]
    agentId: string
    causalEdges: IncidentModel.CausalEdge[]
    createdTs: number
    description: string
    incident_hash: string
    incidentId: string
    postmortemRef: string | null
    prev_incident_hash: string
    resolvedTs: number | null
    rootCauseClaimIds: string[]
    signature: string
    timelineEventIds: string[]
    title: string
    triggerId: string
    triggerType:
        | "DRIFT"
        | "ASSURANCE_FAILURE"
        | "FREEZE"
        | "BUDGET_EXCEEDED"
        | "GOVERNANCE_VIOLATION"
        | "MANUAL"
    updatedTs: number