You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ran into this issue while working with springdocs-openapi springdoc/springdoc-openapi#1525
Null vendor exensions are allowed via the OpenAPI spec detailed here
The extension value can be a primitive, an array, an object or null
However, they are not being rendered because the OpenApiMixins class is not setup to do so.
Summary
Ran into this issue while working with springdocs-openapi springdoc/springdoc-openapi#1525
Null vendor exensions are allowed via the OpenAPI spec detailed here
However, they are not being rendered because the OpenApiMixins class is not setup to do so.
Expected Output
Actual Output
Solution
I believe the
@JsonInclude(value = Include.ALWAYS)
annotation should be added here.A similar workaround has been added to the springdocs-openapi project.
The text was updated successfully, but these errors were encountered: