Skip to content

Z111: CONFIG_SCHEMA_ERROR

Severity: error Penalty: Fatal Configuration Error (Analysis Bypassed) Category: configuration Auto-fixable: No Suppression: Non-suppressible

Description

The .zenzic.toml (or pyproject.toml) configuration file contains an invalid schema structure, unknown key, or data type mismatch (e.g. providing a string instead of an integer).

When configuration validation fails, Zenzic halts document analysis to protect workspace integrity.

How to Fix

Correct the configuration key name or value type in .zenzic.toml as indicated by the field error in the diagnostic message.

Example Error

# Invalid string type for integer setting
placeholder_max_words = "fifty"

Corrected .zenzic.toml:

placeholder_max_words = 50

Reference

See the Finding Codes Index for finding code details.