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