@adcp/sdk API Reference - v14.0.0-beta.6
    Preparing search index...

    Interface GovernanceCheckResult

    Governance check result attached to TaskResult.

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

    Properties

    checkId: string
    status: "approved" | "denied" | "conditions"
    checkType?: "legacy" | "intent" | "execution"

    Modern 3.2 response shape, or legacy for the deprecated 3.x arm.

    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.

    consultationContext?: string

    Non-authorizing handle used only to re-check an adjusted intent.

    conditionsApplied?: boolean

    Whether conditions were auto-applied by the middleware

    modifiedParams?: Record<string, unknown>

    The modified params after conditions were applied