swagger-api / swagger-core

Examples and server integrations for generating the Swagger API Specification, which enables easy access to your REST API

Home Page:http://swagger.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@Hidden not working at class level

rodrigo-rufino opened this issue · comments

Dependency: io.swagger.core.v3:swagger-jaxrs2:2.0.10

I'm trying to add @Hidden annotation to my class to remove it from the yaml, but it is not working.

If I add it to a field, it is hidden properly. The problem seems to happen at class level.

My class:

@Setter
@Getter
@NoArgsConstructor
@AllArgsConstructor
@Builder
@Hidden
public class SampleDTO {

    private String Name;

}

The same happens for @Schema(hidden = true).

Hi @rodrigo-rufino are you stil experiencing this issue ? I have tried to reproduce this with swagger-jaxrs2:2.2.20 and it looks like @Hidden annotation works properly, for now I am closing this ticket, if this issue still appears for you, feel free to reopen