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