@willwade/aac-processors
    Preparing search index...

    Interface ValidationCheck

    Represents a single validation check with its result

    interface ValidationCheck {
        description: string;
        error?: string;
        type: string;
        valid: boolean;
        warnings?: string[];
    }
    Index

    Properties

    description: string

    Human-readable description of what is being checked

    error?: string

    Error message if the check failed

    type: string

    Type/category of the check (e.g., 'json_parse', 'grid', 'buttons')

    valid: boolean

    Whether the check passed

    warnings?: string[]

    Non-blocking warnings