aboutsummaryrefslogtreecommitdiffstats
path: root/src/schemas/index_filter_values_schema.ts
blob: 7c8d3f94340a2e367458bc47aec6c78df5c00591 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export const indexFilterValuesSchema = {
    id: '/indexFilterValues',
    additionalProperties: {
        oneOf: [
            {$ref: '/numberSchema'},
            {$ref: '/addressSchema'},
            {$ref: '/orderHashSchema'},
        ],
    },
    type: 'object',
};