@archastro/sdk
    Preparing search index...

    Interface ValidationResult

    The result of a configuration validation check, indicating whether the config is valid and listing any errors or warnings.

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

    Properties

    errors?: string[]

    List of human-readable error messages describing why validation failed. Empty or absent when valid is true.

    valid: boolean

    true if the configuration passed all validation checks, false if one or more errors were found.

    warnings?: string[]

    List of human-readable warning messages emitted during validation. Warnings do not cause valid to be false but indicate potentially problematic configuration.