···248248#[derive(Debug, Deserialize, JsonSchema)]
249249struct AllCollectionsQuery {
250250 /// The maximum number of collections to return in one request.
251251+ ///
252252+ /// Default: 100
251253 #[schemars(range(min = 1, max = 200), default = "all_collections_default_limit")]
254254+ #[serde(default = "all_collections_default_limit")]
252255 limit: usize,
253256 /// Always omit the cursor for the first request. If more collections than the limit are available, the response will contain a non-null `cursor` to include with the next request.
254257 cursor: Option<String>,