Langfuse JS/TS SDKs
    Preparing search index...

    Interface PublicApiValidationIssue

    One validation issue returned for malformed request bodies or query parameters.

    This mirrors the most important parts of a Zod issue: a machine-readable code, a human-readable message, and a structured path.

    interface PublicApiValidationIssue {
        code: string;
        message: string;
        path: unknown[];
    }
    Index

    Properties

    Properties

    code: string

    Machine-readable validation issue code emitted by the server validator.

    message: string

    Human-readable explanation of the validation failure.

    path: unknown[]

    Path to the invalid field, for example ["mapping", 0, "jsonPath"].