diff --git a/vocabulary-rest-ws/src/main/java/org/gbif/vocabulary/restws/resources/ConceptResource.java b/vocabulary-rest-ws/src/main/java/org/gbif/vocabulary/restws/resources/ConceptResource.java index a1d9e9e2..a4cee6ee 100644 --- a/vocabulary-rest-ws/src/main/java/org/gbif/vocabulary/restws/resources/ConceptResource.java +++ b/vocabulary-rest-ws/src/main/java/org/gbif/vocabulary/restws/resources/ConceptResource.java @@ -199,6 +199,7 @@ public class ConceptResource { schema = @Schema(implementation = String.class), in = ParameterIn.QUERY, explode = Explode.TRUE)) + @Parameter(name = "params", hidden = true) @ListCommonDocs @GetMapping public PagingResponse listConcepts( diff --git a/vocabulary-rest-ws/src/main/java/org/gbif/vocabulary/restws/resources/VocabularyResource.java b/vocabulary-rest-ws/src/main/java/org/gbif/vocabulary/restws/resources/VocabularyResource.java index 1998a6c2..ebc7b5c2 100644 --- a/vocabulary-rest-ws/src/main/java/org/gbif/vocabulary/restws/resources/VocabularyResource.java +++ b/vocabulary-rest-ws/src/main/java/org/gbif/vocabulary/restws/resources/VocabularyResource.java @@ -174,6 +174,7 @@ public class VocabularyResource { }) @CommonParameters.QParameter @Pageable.OffsetLimitParameters + @Parameter(name = "params", hidden = true) @Docs.DefaultSearchResponses @GetMapping public PagingResponse listVocabularies(VocabularyListParams params) {