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