diff options
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 |