You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 23, 2021. It is now read-only.
If a schema element contains no "type" field, the validation of an "enum" field is silently skipped.
The enum should be validated without type or an error should be raised complaining about the invalid schema.
Example: schema.json: { "enum": [ "boo", "far"] } payload.json: "Hello World"
passes silently with obj = 'Hello World'.
The text was updated successfully, but these errors were encountered:
If a schema element contains no "type" field, the validation of an "enum" field is silently skipped.
The enum should be validated without type or an error should be raised complaining about the invalid schema.
Example:
schema.json: { "enum": [ "boo", "far"] }
payload.json: "Hello World"
passes silently with
obj = 'Hello World'
.The text was updated successfully, but these errors were encountered: