Я столкнулся с проблемой с примером в ответе.
@ApiResponse(code=200,
message="fetch list of Service/Config Resources",
response = testing.class,
responseContainer = "List",
examples=@Example(
value = @ExampleProperty(
mediaType = MediaType.APPLICATION_JSON_VALUE,
value = "{testingId: 1234, testingName = Testing Name}"
)
)
)
Но получаю пример ответа как
[
{
"testingId": "string",
"testingName": "string"
}
]