Here is a JSON validator.
April 27, 2008 at 2:17 pm · Filed under Technology ·Tagged JavaScript, JSON, tools
Here is a JSON validator.

| Kamran Omar on Configure heap size for Tomcat… | |
| Ezra on Java SE 6 Mac OS X 10.4.5 bina… | |
| scoob on Java SE 6 Mac OS X 10.4.5 bina… | |
| Dave on Java SE 6 Mac OS X 10.4.5 bina… | |
| Patrick on Java SE 6 Mac OS X 10.4.5 bina… |
Xavier said
The validator seems to report as invalid any JSON containing escape sequences such as \’, which is the normal way to escape the single quote character. For example, it flunks the folowing:
{”replyCode”:500, “replyText”:”test \”}
Dave said
Hi Xavier,
The following JSON works:
{
“replyCode”: 500,
“replyText”: “test \”"
}