protocol/packages/json-schemas/schemas/paginated_collection_schema.ts
2018-07-31 16:37:51 -07:00

11 lines
276 B
TypeScript

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