This is implemented by [AJV's strict mode](https://ajv.js.org/strict-mode.html#contradictory-types). ```jsonc { type: "object", // requires an object anyOf: [ {type: "array"}, // requires an array {type: "object"} ] } ```