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

    Interface ComparisonReport

    The comparison report: how well two sources agree on one symbol.

    interface ComparisonReport {
        symbol: string;
        sources: [string, string];
        consistency_score: number;
        compared_dates: number;
        only_in: Record<string, number>;
        findings: Finding[];
        summary: Record<Severity, number>;
        generated_at: string;
    }
    Index
    symbol: string
    sources: [string, string]
    consistency_score: number

    0–100, built like the sanity_score: 100 − Σ severity penalties.

    compared_dates: number
    only_in: Record<string, number>
    findings: Finding[]
    summary: Record<Severity, number>
    generated_at: string