aboutsummaryrefslogtreecommitdiffstats
path: root/packages/connect/src/schemas/paged_request_opts_schema.ts
blob: f41a637b1d27f138193584fb127f93074fb98987 (plain) (blame)
1
2
3
4
5
6
7
8
export const pagedRequestOptsSchema = {
    id: '/PagedRequestOpts',
    type: 'object',
    properties: {
        page: { type: 'number' },
        per_page: { type: 'number' },
    },
};