aboutsummaryrefslogtreecommitdiffstats
path: root/src/schemas/order_fill_or_kill_requests_schema.ts
blob: 4db7113de994fd626c7494286268b6a0f4e19a20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
export const orderFillOrKillRequestsSchema = {
    id: '/OrderFillOrKillRequests',
    type: 'array',
    items: {
        properties: {
            signedOrder: {$ref: '/signedOrderSchema'},
            fillTakerAmount: {type: '/numberSchema'},
        },
        required: ['signedOrder', 'fillTakerAmount'],
        type: 'object',
    },
};