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
Dynamite should support validating more strict types:
This can all fit nicely into: https://github.com/nextcloud/neon/blob/main/packages/dynamite/dynamite/lib/src/helpers/pattern_check.dart. We must not only consider validating these schemas inside objects but also when uses as a parameter in an operation.
The text was updated successfully, but these errors were encountered:
String enums with patterns are broken:
{ "type": "string", "pattern": "^a$", "enum": [ "a", "b" ] }
The pattern match method is called but the enum it is given is not the expected String.
Sorry, something went wrong.
Required keys of objects are not checked to be present in the properties keys.
Leptopoda
Successfully merging a pull request may close this issue.
Dynamite should support validating more strict types:
This can all fit nicely into: https://github.com/nextcloud/neon/blob/main/packages/dynamite/dynamite/lib/src/helpers/pattern_check.dart. We must not only consider validating these schemas inside objects but also when uses as a parameter in an operation.
The text was updated successfully, but these errors were encountered: