Skip to content

Same schema on different request Methods #54

Open
@schillerenrico

Description

@schillerenrico

Environment

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

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions