aboutsummaryrefslogtreecommitdiffstats
path: root/src/schemas/order_cancel_schema.ts
blob: 04b2c179f033fb4a02a12af15e6b483a6f323e2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
export const orderCancellationRequestsSchema = {
    id: '/OrderCancellationRequests',
    type: 'array',
    items: {
        properties: {
            order: {$ref: '/orderSchema'},
            takerTokenCancelAmount: {$ref: '/numberSchema'},
        },
        required: ['order', 'takerTokenCancelAmount'],
        type: 'object',
    },
};