Я следую за документами Swagger 2.0 Annotation , но я не могу добавить примеры значений для тела.
public Response updateUserInfo(@RequestBody(description = "", required = true, content = @Content(mediaType = "application/json")}) final String userInfo)
Есть ли эквивалент @ApiImplicitParams
или @ExampleProperty
для тела.
Хотя вышеупомянутый документ приводит пример для @ApiResponse
:
examples = { @ExampleObject(name = "boo", value = "example",summary = "example of boo", externalValue = "example of external value") }
, но это не работает для тела.
Я также пробовал это, нопример не отображается:
public Response updateUserInfo(@@Parameter(examples = {@ExampleObject(name = "userInfo", value = "some example")})) final String userInfo)