We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2314a commit a6c0c98Copy full SHA for a6c0c98
packages/models-library/src/models_library/api_schemas_webserver/storage.py
@@ -49,9 +49,11 @@ class ListPathsQueryParams(InputSchema, CursorQueryParameters):
49
size: Annotated[
50
int,
51
Field(
52
- description="maximum number of items to return (pagination)", ge=1, lt=1000
+ description="maximum number of items to return (pagination)",
53
+ ge=1,
54
+ lt=MAX_NUMBER_OF_PATHS_PER_PAGE,
55
),
- ] = 20
56
+ ] = DEFAULT_NUMBER_OF_PATHS_PER_PAGE
57
58
59
class DataExportPost(InputSchema):
0 commit comments