Type Alias SchemaRuleQuality

Detailed quality counts for a single rule.

type SchemaRuleQuality = {
    errors?: string[];
    invalid: number;
    notApplicable: number;
    notExecutable: number;
    total: number;
    valid: number;
}
Index
errors?: string[]

List of error identifiers encountered during rule execution.

invalid: number

Number of cells that failed the rule.

notApplicable: number

Number of cells where the rule does not apply.

notExecutable: number

Number of cells where the rule could not be executed.

total: number

Total number of cells evaluated by the rule.

valid: number

Number of cells that passed the rule.