Open hudson-ai opened 2 months ago
E.g. the following schema should allow the generation of any object that does not contain the key "name":
{ "type": "object", "properties": { "name": false }, "required": [] }
Note that
{ "type": "object", "properties": { "name": false }, "required": ["name"] }
should still raise an exception because there are no valid instances of this schema
E.g. the following schema should allow the generation of any object that does not contain the key "name":