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
It seems like properties that is listed in the required list, but is not present in the properties will be ignored by the validation. This makes the validated data not properly valid in accordance with the JSON Schema standard, and will fail validation with other validators.
The above schema requires both a title and a description property to be present (while the schema for the description property is unspecified). But the json-schema-form validator will simply ignore the description property.
The text was updated successfully, but these errors were encountered:
Problem
It seems like properties that is listed in the
required
list, but is not present in theproperties
will be ignored by the validation. This makes the validated data not properly valid in accordance with the JSON Schema standard, and will fail validation with other validators.How to reproduce
Example of a schema that reproduces the problem:
The above schema requires both a
title
and adescription
property to be present (while the schema for thedescription
property is unspecified). But the json-schema-form validator will simply ignore thedescription
property.The text was updated successfully, but these errors were encountered: