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
5.0.0.CR3
in openapi route /users/{id} define id as path parameter of type string invoke /users/-1
this results in a validation exception: SchemaValidationException: Reason: Instance type number is invalid. Expected string
according to openapi spec this should not throw an error but should set id="-1"
The text was updated successfully, but these errors were encountered:
PS: /users/1 is ok, but /users/-1 throws an error instead of setting id="-1"
Sorry, something went wrong.
pk-work
No branches or pull requests
Version
5.0.0.CR3
Context
in openapi route /users/{id} define id as path parameter of type string
invoke /users/-1
this results in a validation exception:
SchemaValidationException: Reason: Instance type number is invalid. Expected string
according to openapi spec this should not throw an error but should set id="-1"
The text was updated successfully, but these errors were encountered: