learn-content-engine - v0.34.0
    Preparing search index...

    Interface ValidationIssue

    One validation problem: a JSON-pointer-ish path, a human-readable reason, a stable rule id, its severity, and a docAnchor into the docs. params carries the values the message interpolates, so a consumer can word the problem itself; it is absent when the rule has none (engine#201).

    interface ValidationIssue {
        docAnchor: string;
        id: string;
        message: string;
        params?: Readonly<Record<string, ValidationParamValue>>;
        path: string;
        severity: ValidationSeverity;
    }
    Index
    docAnchor: string
    id: string
    message: string
    params?: Readonly<Record<string, ValidationParamValue>>
    path: string