Error message
When this error occurs
Each field or nested node is either primitive or non-primitive, and the configuration fields must match:| Node kind | Allowed fields |
|---|---|
| Primitive (string, integer, float, etc.) | enabled_stats, stat_options |
| Non-primitive (object, array) | self, properties, items |
Example: request that triggers this error
address field has both enabled_stats (primitive) and properties (non-primitive).
How to fix
Choose the appropriate config shape for the field’s actual schema type: If the field is an object (non-primitive):self for stats on the container column and properties for named children.
If the field is a primitive (string, integer, etc.):
properties, items, and self.
Related errors
- EmptyNodeConfig — node with no configuration at all
- UnsupportedSelfStats — only
null_value_countallowed inself

