aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/paginated_collection_schema.ts
blob: abd86f1ef8145491c5ab45e05525be5d64d083f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export const paginatedCollectionSchema = {
    id: '/PaginatedCollection',
    type: 'object',
    properties: {
        total: { type: 'number' },
        perPage: { type: 'number' },
        page: { type: 'number' },
    },
    required: ['total', 'perPage', 'page'],
};