Multiple Checks/ execution

Hello,

Is there a way to see all errors per execution instead of what it is now, were it only shows the first failure from a list of checks?

{
  "$..isApplying": "false",
  "$..members[0]": "true",
  "$..validation.errors": "[{\"error\":\"RequiredFieldMissing\",\"path\":[\"household\",\"members\",0,\"firstName\"]}]"
}

So if the first line fails, it can run the other two anyways. Thank you in advance.

No, not atm. Supporting this is no trivial matter as it would break current error reporting.

Hi,

Any news on that?
My code is the following. Currently the report is writing only the first error found.

.check(jsonPath(jsonPathString) in posValues,
  jsonPath("$.parts[?(@.part=='part1')].error").isNull,
  jsonPath("$.parts[?(@.part=='part2')].error").isNull))

Thanks