aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/relayer_api_orders_channel_update_response_schema.ts
blob: 31f5ab3895ac21079a9874894d47ce7b71d7d6fe (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'],
};