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