14 lines
323 B
TypeScript
14 lines
323 B
TypeScript
export const relayerApiOrdersResponseSchema = {
|
|
id: '/RelayerApiOrdersResponse',
|
|
type: 'object',
|
|
allOf: [
|
|
{ $ref: '/PaginatedCollection' },
|
|
{
|
|
properties: {
|
|
records: { $ref: '/RelayerApiOrders' },
|
|
},
|
|
required: ['records'],
|
|
},
|
|
],
|
|
};
|