We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
springdoc
Learn more about funding links in repositories.
Report abuse
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
Describe the bug
When a model contains a ByteArray field, springdoc does not correctly generate a property definition.
currently this is generated
"properties": { "data": { "type": "array", "items": { "type": "string", "format": "byte" } } }
When is should be
"properties": { "data": { "type": "string", "format": "byte" } }
as per https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#data-types
To Reproduce Steps to reproduce the behavior:
I've fixed it here already: #1687
I'm honestly happy to fix it myself, I just want to document the bug now so no one else gets stuck on it.
Screenshots If applicable, add screenshots to help explain your problem.
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
When a model contains a ByteArray field, springdoc does not correctly generate a property definition.
currently this is generated
When is should be
as per https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#data-types
To Reproduce
Steps to reproduce the behavior:
I've fixed it here already: #1687
I'm honestly happy to fix it myself, I just want to document the bug now so no one else gets stuck on it.
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: