2
0

🐛 (results) Lower the max limit in getResults endpoint to avoid payload size error

Closes #908
This commit is contained in:
Baptiste Arnaud
2023-10-17 14:19:09 +02:00
parent 1cc4ccfcfa
commit 885dcecd8d
4 changed files with 9 additions and 8 deletions

View File

@ -29833,10 +29833,12 @@
{
"name": "limit",
"in": "query",
"required": true,
"required": false,
"schema": {
"type": "string",
"pattern": "^[0-9]{1,3}$"
"type": "number",
"minimum": 1,
"maximum": 100,
"default": 50
}
},
{