Result of inspectDataModel.

interface InspectionReport {
    byCode: Map<string, inspect.dataModel.Issue[]>;
    errors: inspect.dataModel.Issue[];
    info: inspect.dataModel.Issue[];
    inspectionsRun: readonly inspect.dataModel.Inspection[];
    issues: inspect.dataModel.Issue[];
    warnings: inspect.dataModel.Issue[];
}

Properties

byCode: Map<string, inspect.dataModel.Issue[]>

Issues bucketed by Issue.code. Iteration order matches the insertion order of the first issue per code.

inspectionsRun: readonly inspect.dataModel.Inspection[]

Inspections that actually fired during this run, in execution order.

warnings: inspect.dataModel.Issue[]