enums not generated in YAML file using swagger-maven-plugin
Hello SmartBear community, I am usingswagger-maven-pluginto generate a YAML file based on openAPI annotations. https://github.com/swagger-api/swagger-core/tree/master/modules/swagger-maven-plugin There is a problem with theenumerationannotation (enums): I do not know how to write it usingio.swagger.v3.oas.annotations, so in the end the YAML output file is not generated properly. public Response methodName( @Parameter(description = ".....") @Parameter(in = ParameterIn.QUERY, description = FILTER_DESCRIPTION, example = ".....", schema = @Schema( type = "string", description = ".....", enumeration = "{\".....\", \".....\", \".....\"}")) example = "{\".....\", \".....\", \".....\"}")) ............. Do you have any suggestion in how to solve this? BogdanSolved4.2KViews0likes2Comments