We should be able to define a sample for the Body of a POST/PUT method through the javadoc.
If the route accepts several content-type, then the sample must be given in the same order as the content type as been declared.
/**
* Create a new Human.
*
* @body.sample { "name" : "Nobody" }
*/
@Route(method = PUT,uri = "/human",accepts = "application/json")
public Result putHuman(@Body final JsonNode human){
We should be able to define a sample for the Body of a POST/PUT method through the javadoc. If the route accepts several content-type, then the sample must be given in the same order as the content type as been declared.