Open
Description
The KotlinJsonAdapter
fails fast when it encounters an error. This mean if there is a problem with the JSON we only get the first error. Of course the benefit of this is we don't parse additional data when we know the whole process is gonna fail.
In some cases it might be useful to accumulate the errors and fail at the end of the whole process. This means more information about everything that is wrong with the data.
Since this is a tradeoff I suggest a new adapter that accumulates errors or a setting in the existing one.
Would you interested in a PR that adds that functionality?