Interface ValidationWarning

Individual validation warning (non-blocking)

interface ValidationWarning {
    code: "UNKNOWN_FIELD";
    context?: Record<string, unknown>;
    field: string;
    message: string;
    rowIndex: number;
}

Properties

code: "UNKNOWN_FIELD"

Warning code for programmatic handling

context?: Record<string, unknown>

Additional context

field: string

Field name that triggered warning

message: string

Human-readable warning message

rowIndex: number

Zero-based row index