From e41bb8830a09744da96871bf564391ccf37144d2 Mon Sep 17 00:00:00 2001 From: juancarmore Date: Fri, 25 Apr 2025 12:11:02 +0200 Subject: [PATCH] openapi: Update pagination schema descriptions to use generic elements instead of rooms or recordings --- backend/openapi/components/schemas/meet-pagination.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/openapi/components/schemas/meet-pagination.yaml b/backend/openapi/components/schemas/meet-pagination.yaml index 802830a..b992009 100644 --- a/backend/openapi/components/schemas/meet-pagination.yaml +++ b/backend/openapi/components/schemas/meet-pagination.yaml @@ -3,13 +3,13 @@ properties: isTruncated: type: boolean description: > - Indicates if there are more recordings to retrieve. - If true, use the `nextPageToken` to fetch the next set of recordings. + Indicates if there are more elements to retrieve. + If true, use the `nextPageToken` to fetch the next set of elements. nextPageToken: type: [string, 'null'] - description: The token to retrieve the next page of recordings. + description: The token to retrieve the next page of elements. maxItems: type: integer 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.