RPE Chart Utils
    Preparing search index...

    Interface ValidationIssue

    A validation issue found in the chart.

    interface ValidationIssue {
        severity: "error" | "warning";
        message: string;
        location?: string;
    }
    Index

    Properties

    severity: "error" | "warning"

    Severity: 'error' or 'warning'.

    message: string

    Human-readable description.

    location?: string

    Location context (e.g., "Line 3, Note 7").