aboutsummaryrefslogtreecommitdiffstats
path: root/src/schemas/order_cancel_schema.ts
blob: fc640106332e42ebe8ac8ed1cf18d6be466a724e (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'},
            takerTokenCancellAmount: {type: '/numberSchema'},
        },
        required: ['order', 'takerTokenCancellAmount'],
        type: 'object',
    },
};