I need to receive a big JSON on my server (more than 22 fields). I have a case class with a lot of fields:
case class Filters(objectType: Option[String] = No
I had the same pb and find a solution by using
Jsonx.formatCaseClass[Filters]
The explication can be found https://harrylaou.com/playframework/bigjson/