protocol/packages/json-schemas/schemas/relayer_api_orders_response_schema.ts
2018-07-30 17:16:14 -07:00

14 lines
323 B
TypeScript

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