I use play-swagger + swagger-ui in my project, however I have request with json body like this:
{"country":{"title": "Germany"}}'
When I annotate my method with:
ApiImplicitParam(name = "country[title]", value = "Country's title", required = true, dataType = "String", paramType = "body")
it doesn't work in swagger UI, how can I tell that my title name in country namespace ?