hypothesis-jsonschema icon indicating copy to clipboard operation
hypothesis-jsonschema copied to clipboard

Missed/wrong canonicalisation in `anyOf`+`not`

Open Zac-HD opened this issue 3 years ago • 0 comments

schema = {
    "not": {
        "anyOf": [
            {"type": "null"},
            {"type": "boolean"},
            {"type": "number"},
            {"type": "number", "multipleOf": 2.5},
        ]
    }
}

Zac-HD avatar Dec 15 '21 02:12 Zac-HD