JsonReader fails to read string values like the following:
"\"aaaa\""
This is not valid json though. Should we still support it?
{
"property":""value""
}
The example string is invalid JSON. However, even if you correctly escaped the double-quote, the current POC reader would still not handle it. So, this is still a valid issue.
I just fixed the markup to show the inner quotes are escaped
Most helpful comment
The example string is invalid JSON. However, even if you correctly escaped the double-quote, the current POC reader would still not handle it. So, this is still a valid issue.