@adcp/client API Reference - v4.19.0
    Preparing search index...

    Interface GovernanceCheckResult

    Governance check result attached to TaskResult.

    interface GovernanceCheckResult {
        checkId: string;
        status: "approved" | "denied" | "conditions" | "escalated";
        explanation: string;
        findings?: GovernanceFinding[];
        conditions?: GovernanceCondition[];
        escalation?: GovernanceEscalation;
        expiresAt?: string;
        governanceContext?: string;
        conditionsApplied?: boolean;
        modifiedParams?: Record<string, unknown>;
    }
    Index

    Properties

    checkId: string
    status: "approved" | "denied" | "conditions" | "escalated"
    explanation: string
    findings?: GovernanceFinding[]
    conditions?: GovernanceCondition[]
    expiresAt?: string
    governanceContext?: string

    Opaque governance context issued by the governance agent. Callers must thread this to subsequent checks and outcome reports.

    conditionsApplied?: boolean

    Whether conditions were auto-applied by the middleware

    modifiedParams?: Record<string, unknown>

    The modified params after conditions were applied