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
Adding 'uniqueItems' like is currently not detected as a change:
V1
schema: type: array items: type: integer
V2 (Added 'uniqueItems')
schema: type: array items: type: integer uniqueItems: true
Same with removing 'uniqueItems':
V2 (Removed'uniqueItems')
(Changing 'true' to 'false' or vice versa should be treated simply as adding/removing)
The text was updated successfully, but these errors were encountered:
DrSatyr
Successfully merging a pull request may close this issue.
Adding 'uniqueItems' like is currently not detected as a change:
V1
V2 (Added 'uniqueItems')
Same with removing 'uniqueItems':
V1
V2 (Removed'uniqueItems')
(Changing 'true' to 'false' or vice versa should be treated simply as adding/removing)
The text was updated successfully, but these errors were encountered: