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

    Interface ValidationError

    A single validation error or warning.

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

    Properties

    code: string

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

    column?: number

    Column number where the error occurred (1-based)

    line?: number

    Line number where the error occurred (1-based)

    message: string

    The error/warning message

    Severity of the validation issue