Skip to content

Z111: CONFIG_SCHEMA_ERROR

  • Severity: Error


    Penalty: 0.0 points | Category: general

  • Remediation & Opt-In


    Auto-Fixable: No | Opt-In: No


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.