Causality Analyzer
    Preparing search index...

    Result of a configuration validation

    interface ValidationResult {
        errors: readonly string[];
        valid: boolean;
        warnings: readonly string[];
    }
    Index
    errors: readonly string[]

    Error messages if invalid (empty if valid)

    valid: boolean

    Whether the configuration is valid

    warnings: readonly string[]

    Warnings that don't prevent use but should be reviewed