aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/order_cancel_schema.ts
blob: ad23d01ccf8cb610d30a226d401068278618b5b5 (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: '/Order' },
            takerTokenCancelAmount: { $ref: '/Number' },
        },
        required: ['order', 'takerTokenCancelAmount'],
        type: 'object',
    },
};