diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-08-18 04:58:55 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-08-18 04:58:55 +0800 |
commit | f2d1d953553adfa59f0a39bf2cf98817fae0a4ff (patch) | |
tree | 572db33638e055725132756d24a866ec1a22e1d9 /packages/json-schemas | |
parent | 48ec78d3aaa5dcef8544d17f26ef8ea8b31661e5 (diff) | |
download | dexon-sol-tools-f2d1d953553adfa59f0a39bf2cf98817fae0a4ff.tar dexon-sol-tools-f2d1d953553adfa59f0a39bf2cf98817fae0a4ff.tar.gz dexon-sol-tools-f2d1d953553adfa59f0a39bf2cf98817fae0a4ff.tar.bz2 dexon-sol-tools-f2d1d953553adfa59f0a39bf2cf98817fae0a4ff.tar.lz dexon-sol-tools-f2d1d953553adfa59f0a39bf2cf98817fae0a4ff.tar.xz dexon-sol-tools-f2d1d953553adfa59f0a39bf2cf98817fae0a4ff.tar.zst dexon-sol-tools-f2d1d953553adfa59f0a39bf2cf98817fae0a4ff.zip |
Remove default query parameters
Diffstat (limited to 'packages/json-schemas')
-rw-r--r-- | packages/json-schemas/schemas/relayer_api_fee_recipients_response_schema.ts | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/packages/json-schemas/schemas/relayer_api_fee_recipients_response_schema.ts b/packages/json-schemas/schemas/relayer_api_fee_recipients_response_schema.ts index 150f07af4..4c798ff5c 100644 --- a/packages/json-schemas/schemas/relayer_api_fee_recipients_response_schema.ts +++ b/packages/json-schemas/schemas/relayer_api_fee_recipients_response_schema.ts @@ -5,15 +5,13 @@ export const relayerApiFeeRecipientsResponseSchema = { { $ref: '/paginatedCollectionSchema' }, { properties: { - records: { $ref: '/relayerApiFeeRecipientsSchema' }, + records: { + id: '/relayerApiFeeRecipientsSchema', + type: 'array', + items: { $ref: '/addressSchema' }, + }, }, required: ['records'], }, ], -}; - -export const relayerApiFeeRecipientsSchema = { - id: '/relayerApiFeeRecipientsSchema', - type: 'array', - items: { $ref: '/addressSchema' }, -}; +};
\ No newline at end of file |