@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface AdcpValidationIssue

    A single validation failure from an AdCP VALIDATION_ERROR response.

    pointer uses RFC 6901 JSON Pointer format (e.g. /packages/0/targeting), which differs from the top-level AdcpErrorInfo.field that uses JSONPath-lite (packages[0].targeting). For LLM self-correction: read keyword first — 'required' means add the missing field, 'enum' means pick a valid value, 'type' means fix the value type.

    interface AdcpValidationIssue {
        pointer: string;
        message: string;
        keyword: string;
        schemaPath?: string;
    }
    Index

    Properties

    pointer: string

    RFC 6901 JSON Pointer to the offending field (e.g. /packages/0/targeting).

    message: string

    Human-readable reason this field was rejected.

    keyword: string

    JSON Schema keyword that caused rejection (e.g. 'required', 'type', 'enum').

    schemaPath?: string

    Path inside the schema that rejected the payload. Sellers SHOULD NOT emit on production endpoints — it leaks oneOf branch selection and is a fingerprinting oracle for adversarial callers. May appear in dev/sandbox mode.