aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/index_filter_values_schema.ts
blob: f3c8cef685a84d2649e2984984ab9e45e4decced (plain) (blame)
1
2
3
4
5
6
7
export const indexFilterValuesSchema = {
    id: '/indexFilterValuesSchema',
    additionalProperties: {
        oneOf: [{ $ref: '/numberSchema' }, { $ref: '/addressSchema' }, { $ref: '/orderHashSchema' }],
    },
    type: 'object',
};