17 lines
429 B
TypeScript
17 lines
429 B
TypeScript
export const relayerApiFeeRecipientsResponseSchema = {
|
|
id: '/relayerApiFeeRecipientsResponseSchema',
|
|
type: 'object',
|
|
allOf: [
|
|
{ $ref: '/paginatedCollectionSchema' },
|
|
{
|
|
properties: {
|
|
records: {
|
|
type: 'array',
|
|
items: { $ref: '/addressSchema' },
|
|
},
|
|
},
|
|
required: ['records'],
|
|
},
|
|
],
|
|
};
|