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
That happens because you are calling info->queryParams.add<String>("param") three times. Try using operator [] for editing the param instead, that is, info->queryParams["param"].
When annotating an optional query parameter like
the parameter gets added three times to the OpenAPI spec at
/api-docs/oas-3.0.0.json
:This interferes with some automated schema checks as for example used in https://github.com/openapi-generators/openapi-python-client, such that two of the three parameters need to be manually removed.
The text was updated successfully, but these errors were encountered: