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
Hello, Thank you for developing this awesome library.
Describe the bug
Validating schema against a meta-schema doesn't throw any error when the properties listed in the required are not part of the property definition
To Reproduce
I am trying to validate the below schema against draftV4 meta-schema, the validation is getting succeded without any error being thrown,
Hello, Thank you for developing this awesome library.
Describe the bug
Validating schema against a meta-schema doesn't throw any error when the properties listed in the
required
are not part of the property definitionTo Reproduce
I am trying to validate the below schema against draftV4 meta-schema, the validation is getting succeded without any error being thrown,
updated
property is not available in theproperties
definition. This validation is a success even though it was not part of theproperties
Expected behavior
An exception to be thrown when the required properties are not available in the property definition.
Additional context
When the payload is verified against the schema, an error is thrown
object has missing required properties ([\"updated\"])
Is there a way to identify the required properties that are not available in the schema when it is compared with meta-schema?
The text was updated successfully, but these errors were encountered: