market-data-sanity-checker - v1.2.0
    Preparing search index...

    Interface SanityReport

    interface SanityReport {
        symbol: string;
        source: string;
        sanity_score: number;
        findings: Finding[];
        summary: Record<Severity, number>;
        generated_at: string;
    }
    Index
    symbol: string
    source: string
    sanity_score: number
    findings: Finding[]
    summary: Record<Severity, number>

    Per-severity count of DISTINCT rules that fired — not occurrences. A rule that flags 847 bad bars appears once in findings and counts once here; the 847 lives in that finding's occurrences.

    generated_at: string