Add free-form filters to the query parameters

This commit is contained in:
Dillen Meijboom 2022-09-07 15:57:22 +02:00
parent e6f1a0f44c
commit 095c8822c1
No known key found for this signature in database
GPG Key ID: 734BC6158CC4E848

View File

@ -81,4 +81,15 @@ module.exports = [
type: 'string',
},
},
{
name: 'filters',
in: 'query',
description: 'Filters to apply',
deprecated: false,
required: false,
schema: {
type: 'object',
},
style: 'deepObject',
},
];