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