aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/relayer_api_orders_channel_update_response_schema.ts
blob: 38306391b04d2ecd4e4c3033737c4e9aa971259e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export const relayerApiOrdersChannelUpdateSchema = {
    id: '/RelayerApiOrdersChannelUpdate',
    type: 'object',
    properties: {
        type: { enum: ['update'] },
        channel: { enum: ['orders'] },
        requestId: { type: 'string' },
        payload: { $ref: '/RelayerApiOrders' },
    },
    required: ['type', 'channel', 'requestId', 'payload'],
};