Description
When a validation error contains escaped characters (\u0027) in the response body, the DebugProbe response formatter renders malformed JSON.
The response body becomes visually corrupted and hard to read.
Expected
Properly formatted JSON response body.
Actual
Escaped Unicode sequences break JSON formatting/rendering.
Example:
{
"errors": {
"$.items[1]": [
"\u0027\u0022\u0027 is invalid after a value..."
]
}
}

Description
When a validation error contains escaped characters (
\u0027) in the response body, the DebugProbe response formatter renders malformed JSON.The response body becomes visually corrupted and hard to read.
Expected
Properly formatted JSON response body.
Actual
Escaped Unicode sequences break JSON formatting/rendering.
Example:
{ "errors": { "$.items[1]": [ "\u0027\u0022\u0027 is invalid after a value..." ] } }