Polyglot SQL API Documentation - v0.2.0
    Preparing search index...

    Interface ValidationError

    A single validation error or warning.

    interface ValidationError {
        code: string;
        column?: number;
        end?: number;
        line?: number;
        message: string;
        severity: ValidationSeverity;
        start?: number;
    }
    Index

    Properties

    code: string

    Error code (e.g., "E001", "W001")

    column?: number

    Column number where the error occurred (1-based)

    end?: number

    End byte offset of the error range (exclusive)

    line?: number

    Line number where the error occurred (1-based)

    message: string

    The error/warning message

    Severity of the validation issue

    start?: number

    Start byte offset of the error range