BUPKIS
    Preparing search index...

    The issue interface of the failure output.

    Describes a single validation problem, including a human-readable message and optional path to the problematic value in nested structures.

    interface Issue {
        message: string;
        path?: readonly (PathSegment | PropertyKey)[];
    }
    Index

    Properties

    Properties

    message: string

    The error message of the issue.

    Human-readable description of what validation rule was violated.

    path?: readonly (PathSegment | PropertyKey)[]

    The path of the issue, if any.

    For nested structures, indicates where in the object/array hierarchy the validation failed. Can contain property keys or path segment objects.