We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
additionalItems
items
Given the following conditions for an array schema:
In this scenario, validation does not take into account additionalItems when validating additional array items.
JSON Schema reference: http://json-schema.org/latest/json-schema-validation.html#anchor131
The text was updated successfully, but these errors were encountered:
fix array items are not validated against when is an array (#6)
7e6dd43
fix array items are not validated against 'additionalItems' when 'ite…
8c4e5e9
…ms' is an array (#6)
No branches or pull requests
Given the following conditions for an array schema:
items
is an array of item schemas (for positional child item validation);additionalItems
is a non-empty object defining a schema;items
array in the schema;In this scenario, validation does not take into account
additionalItems
when validating additional array items.JSON Schema reference: http://json-schema.org/latest/json-schema-validation.html#anchor131
The text was updated successfully, but these errors were encountered: