You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Define a parameter for a route which has type object
paths: {
'/accounts': {
get: {
'x-operation-name': 'getAccount',
parameters: [
{
name: 'filter',
in: 'query',
description: 'The criteria used to narrow down the number of accounts returned.',
required: false,
type: 'object'
}
However, for LB 3.x backwards compatibility, I have proposed to support complex types in query strings, see #100.
I've been told that OpenAPI Spec 3.0 will support complex objects in query parameters. In which case we need to upgrade LB.next to OpenAPI Spec 3.0 first, see #182.
Description/Steps to reproduce
Define a parameter for a route which has type
object
method in controller:
Expected result
The parameter
filter
should be of typeobject
if we check it in the controller method for the route.Additional information
The text was updated successfully, but these errors were encountered: