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
"/pet/findByTags": {
...
"responses": {
...
"200": {
...
"application/json": {
"schema": {
"type": "array", # <- this line is missing
"items": {
"$ref": "#/components/schemas/Pet"
}
}
If you disable in application.yaml
springdoc:
#api-docs:
#version: openapi_3_1
the type isnt missing.
The text was updated successfully, but these errors were encountered:
taylortails
changed the title
Missing array type when using @ArraySchema using Open3.1
Missing array type when using @ArraySchema with OpenAPI 3.1
Jun 6, 2024
If you run the example demo-spring-boot-3-webmvc
navigate to http://localhost:8081/v3/api-docs
you notice that:
If you disable in application.yaml
the type isnt missing.
The text was updated successfully, but these errors were encountered: