Open
Description
Environment
- Operating System: Windows_NT
- Node Version: v20.15.0
- Nuxt Version: 3.12.3
- CLI Version: 3.12.0
- Nitro Version: 2.9.7
- Package Manager: [email protected]
- Builder: -
- User Config: css, ssr, devtools, modules, runtimeConfig, ui, colorMode, app, openFetch, vue, compatibilityDate, future, srcDir
- Runtime Modules: @nuxt/[email protected], @vueuse/[email protected], [email protected], [email protected]
- Build Modules: -
Reproduction
using a swagger.json like this
...
"/api/health/logs": {
"get": {
"tags": [
"Health"
],
"summary": "Show logs",
"description": "Show all application logs",
"operationId": "ApplicationLogEndpoint",
"parameters": [
{
"name": "user",
"in": "query",
"schema": {
"type": "string",
"default": "SYSTEM",
"nullable": true
}
},
{
"name": "logLevel",
"in": "query",
"schema": {
"default": "INFO",
"nullable": true,
"$ref": "#/components/schemas/LogLevelType"
}
},
{
"name": "page",
"in": "query",
"required": true,
"schema": {
"type": "integer",
"format": "int32"
}
},
{
"name": "pageSize",
"in": "query",
"required": true,
"schema": {
"type": "integer",
"format": "int32"
}
}
],
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaginationResponseOfLog"
},
"example": [
{
"logLevel": "TRACE",
"eventUser": "SYSTEM",
"message": "Trace Log",
"data": null,
"created": "2024-07-11T09:19:00.6673497+02:00"
},
{
"logLevel": "DEBUG",
"eventUser": "SYSTEM",
"message": "Debug Log",
"data": null,
"created": "2024-07-11T09:19:00.6674457+02:00"
}
]
}
}
},
"401": {
"description": "Unauthorized"
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ApiBadRequestResponse"
}
}
}
},
"500": {
"description": "Server Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ApiExceptionResponse"
}
}
}
}
},
"security": [
{
"JWTBearerAuth": []
}
]
},
"delete": {
"tags": [
"Health"
],
"summary": "Clear all logs",
"description": "Clear all collected logs",
"operationId": "ClearApplicationLogsEndpoint",
"responses": {
"200": {
"description": "Success",
"content": {
"text/plain": {
"schema": {
"$ref": "#/components/schemas/EmptyResponse"
}
},
"application/json": {
"schema": {
"$ref": "#/components/schemas/EmptyResponse"
}
}
}
},
"401": {
"description": "Unauthorized"
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ApiBadRequestResponse"
}
}
}
},
"500": {
"description": "Server Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ApiExceptionResponse"
}
}
}
}
},
"security": [
{
"JWTBearerAuth": []
}
]
}
},
...
Describe the bug
When I request the "GET" the generated schema wanted me to provide "query" with pagesize and page. Thats totally fine.
But if I request the "DELETE" it uses the same schema and wants me to provide page and pagesize as well.
Is this a bug or a swagger misconfiguration. Cause in swagger no parameters are needed for the "DELETE" method
Additional context
No response
Logs
No response