Remove default query parameters

This commit is contained in:
fragosti
2018-08-17 13:58:55 -07:00
parent 48ec78d3aa
commit f2d1d95355
8 changed files with 2880 additions and 37 deletions

View File

@@ -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' },
};
};