JSON-ready snapshot of an ApplyFixesResult.

interface ApplyFixesResultJson {
    counts: {
        errors: number;
        fixed: number;
        skipped: number;
        total: number;
    };
    errors: ApplyFixesIssueOutcomeJson[];
    fixed: ApplyFixesIssueOutcomeJson[];
    generatedAt: string;
    skipped: ApplyFixesIssueOutcomeJson[];
}

Properties

counts: { errors: number; fixed: number; skipped: number; total: number }

Bucket counts plus the grand total.

generatedAt: string

ISO-8601 UTC timestamp when the JSON was produced.