Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: spaces hierarchy paramater types #1097

Merged
merged 2 commits into from
May 31, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Adjust the data types of the Spaces Hierarchy query parameters.
turt2live marked this conversation as resolved.
Show resolved Hide resolved
4 changes: 2 additions & 2 deletions data/api/client-server/space_hierarchy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ paths:
contents.
x-example: true
- in: query
type: number
type: integer
name: limit
description: |-
Optional limit for the maximum number of rooms to include per response. Must be an integer
Expand All @@ -67,7 +67,7 @@ paths:
Servers should apply a default value, and impose a maximum value to avoid resource exhaustion.
x-example: 20
- in: query
type: number
type: integer
name: max_depth
description: |-
Optional limit for how far to go into the space. Must be a non-negative integer.
Expand Down