protocol/packages/json-schemas/schemas/paginated_collection_schema.ts

11 lines
279 B
TypeScript

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