2

Here is how the JSON object looks like and I can not get maximum and minimum values for the limit query part displayed:

        "parameters": [
      {
        "name": "limit",
        "in": "query",
       "description": "How many items to return at one time (max 100)",
        "minimum": 0,
        "maximum": 63333,
        "required": false,
        "type": "integer",
        "format": "int32"
      }
    ],
MIKE
  • 95
  • 1
  • 3
  • 9

1 Answers1

1

I think this is an issue with Swagger-UI (possibly you located the same issue?).

However, I tried it using ReDoc and it properly rendered the min/max of the range.

busse
  • 1,761
  • 14
  • 25