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