9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
export const pagedRequestOptsSchema = {
|
|
id: '/PagedRequestOpts',
|
|
type: 'object',
|
|
properties: {
|
|
page: { type: 'number' },
|
|
perPage: { type: 'number' },
|
|
},
|
|
};
|