Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
32 lines
669 B
TypeScript
32 lines
669 B
TypeScript
/**
|
|
* @schema AdminCollectionListResponse
|
|
* type: object
|
|
* description: SUMMARY
|
|
* x-schemaName: AdminCollectionListResponse
|
|
* required:
|
|
* - limit
|
|
* - offset
|
|
* - count
|
|
* - collections
|
|
* properties:
|
|
* limit:
|
|
* type: number
|
|
* title: limit
|
|
* description: The collection's limit.
|
|
* offset:
|
|
* type: number
|
|
* title: offset
|
|
* description: The collection's offset.
|
|
* count:
|
|
* type: number
|
|
* title: count
|
|
* description: The collection's count.
|
|
* collections:
|
|
* type: array
|
|
* description: The collection's collections.
|
|
* items:
|
|
* $ref: "#/components/schemas/AdminCollection"
|
|
*
|
|
*/
|
|
|