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