aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/order_fill_or_kill_requests_schema.ts
blob: 4ef7b069a783c9fbca5b570dc79b6ffc4a24a310 (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: '/SignedOrder'},
            fillTakerAmount: {$ref: '/Number'},
        },
        required: ['signedOrder', 'fillTakerAmount'],
        type: 'object',
    },
};