protocol/packages/json-schemas/schemas/paginated_collection_schema.ts
2018-07-31 17:04:22 -07:00

11 lines
273 B
TypeScript

export const paginatedCollectionSchema = {
id: '/PaginatedCollection',
type: 'object',
properties: {
total: { type: 'number' },
perPage: { type: 'number' },
page: { type: 'number' },
},
required: ['total', 'perPage', 'page'],
};