hypothesis-jsonschema
hypothesis-jsonschema copied to clipboard
Missed/wrong canonicalisation in `anyOf`+`not`
schema = {
"not": {
"anyOf": [
{"type": "null"},
{"type": "boolean"},
{"type": "number"},
{"type": "number", "multipleOf": 2.5},
]
}
}