aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/relayer_api_order_schema.ts
blob: 17fa146c4039afb8192d2a158458d14402773afc (plain) (blame)
1
2
3
4
5
6
7
8
9
export const relayerApiOrderSchema = {
    id: '/relayerApiOrderSchema',
    type: 'object',
    properties: {
        order: { $ref: '/orderSchema' },
        remainingFillableAmount: { $ref: '/numberSchema' },
    },
    required: ['order', 'remainingFillableAmount'],
};