Michał Rychel
Michał Rychel
Due to [openapi spec](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#parameterObject) there is no reason to add most of mentioned fields: allowEmptyValue – valid only for query parameters style – ‘header’ style is always set to simple,...
As the issue is outdated and problem does not appear anymore, I am closing this
To build project from source, as it's specified in documentation, you need to meet two requirements: - Java 11 + - At least Apache Maven 3.6.2 Closing the ticket.
Hi @klam2010 Have you tried to use SwaggerConverter with set "Flatten" option to true in ParseOptions ? It should meet you expectations. Meanwhile i will close this ticket, if you...
Hi @klease Basically it comes out from [OpenApi](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.0.md#parameter-object) specification. Explode will be always set to true by default if style=form and style is set to form by default if in=query.
Hi @mark-roy may I ask you what version of openapi spec are you generating ?
Hi @mark-roy sorry for late response, If problem still exists for you here are some details to generate OAS v3.1 Depending on what tool exactly you use to generate the...
Hi @sam0r040 could you share some details on how you used `enumAsRef` annotation ? I think it should work as intended
Hi @sam0r040, I have tried to reproduce scenario with examples you provided and here is outcome: ```yaml MyEnumObject: type: string enum: - VALUE1 - VALUE2 MyRootObject: type: object properties: myEnumObject:...