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