form-graph
    Preparing search index...

    Interface FieldError

    All of a field's validation failures, normalized to SchemaIssue so the shape is identical whether the codec is zod or Standard Schema. message/code mirror the first issue for the common render-one-message case; issues carries every failure, with path relative to the field — which item of an array field failed lives there.

    interface FieldError {
        code: string;
        issues: readonly SchemaIssue[];
        message: string;
    }
    Index
    code: string
    issues: readonly SchemaIssue[]
    message: string