Open majsan opened 1 month ago
If additionalProperties: false is set, no unconfigured should be fields accepted. However, that only works on the top level, so an entry:
additionalProperties: false
{ "apa": {"bepa": 1, "cepa": 2}}
is valid with config
fields: apa: type: object fields: bepa: type: "string" additionalProperties: false
But Karp should not allow this.
If
additionalProperties: false
is set, no unconfigured should be fields accepted. However, that only works on the top level, so an entry:is valid with config
But Karp should not allow this.