Forum Discussion

bogdanp's avatar
bogdanp
Occasional Contributor
5 years ago
Solved

tags not generated in YAML file using swagger-maven-plugin

Hello,   I am using swagger-maven-plugin to generate a YAML file based on openAPI annotations. https://github.com/swagger-api/swagger-core/tree/master/modules/swagger-maven-plugin The issue ...
  • bogdanp's avatar
    bogdanp
    5 years ago

    I used your suggestion and it worked.

    Thanks a lot for helping me :smileyhappy:

     

    However, now I have other issues, like the one below.

     

    Before I used org.eclipse.microprofile.openapi.annotations and now I am using io.swagger.v3.oas.annotations.

     

    There is a problem with the enumeration annotation: I do not know how to write it using io.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?

    Thanks a lot for your help so far :smileyhappy:

    Bogdan