interface InspectionRunJson {
    codes: string[];
    description: string;
    optIn?: boolean;
    paramsKey?: string;
    schemas?: string[];
}

Properties

codes: string[]

The codes the inspection can emit.

description: string

Inspection's description.

optIn?: boolean

true for opt-in inspections.

paramsKey?: string

Param key the user toggles to enable an opt-in inspection.

schemas?: string[]

Schema-id whitelist, if any.