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