openapi: Update pagination schema descriptions to use generic elements instead of rooms or recordings

This commit is contained in:
juancarmore 2025-04-25 12:11:02 +02:00
parent efad0facf8
commit e41bb8830a

View File

@ -3,13 +3,13 @@ properties:
isTruncated: isTruncated:
type: boolean type: boolean
description: > description: >
Indicates if there are more recordings to retrieve. Indicates if there are more elements to retrieve.
If true, use the `nextPageToken` to fetch the next set of recordings. If true, use the `nextPageToken` to fetch the next set of elements.
nextPageToken: nextPageToken:
type: [string, 'null'] type: [string, 'null']
description: The token to retrieve the next page of recordings. description: The token to retrieve the next page of elements.
maxItems: maxItems:
type: integer type: integer
description: > description: >
Maximum number of rooms returned in a single response page. Maximum number of elements returned in a single response page.
Corresponds to the `maxItems` query parameter in the request. Corresponds to the `maxItems` query parameter in the request.