JingsongLi commented on code in PR #5317: URL: https://github.com/apache/paimon/pull/5317#discussion_r2004776136
########## paimon-open-api/rest-catalog-open-api.yaml: ########## @@ -1040,6 +1185,94 @@ paths: description: Internal Server Error components: schemas: + CreateCatalogRequest: + type: object + properties: + name: + description: Name of catalog. + type: string + options: + type: object + additionalProperties: + type: string + CreateCatalogResponse: + type: object + properties: + name: + type: string + options: + type: object + additionalProperties: + type: string + ListCatalogsResponse: + type: object + properties: + catalogs: + description: An array of catalog information objects. + type: array + items: + $ref: '#/components/schemas/GetCatalogResponse' + nextPageToken: + type: string + description: | + Opaque token to retrieve the next page of results. Absent if there are no more pages. + pageToken should be set to this value for the next request (for the next page of results). + GetCatalogResponse: + type: object + properties: + name: Review Comment: write id first -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@paimon.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org