JSON formatter and validator help


Settings Remark
JSON data Enter the JSON data in the input box and press the Process button. There is no limit set in the number of characters the JSON data may contain. If the data is huge, it will slow down the formatting and validation.

JSON data example:

{
   "firstName": "Peter",
   "lastName": "Parker",
   "age": 25,
   "address": {
      "streetAddress": "187 Chrystie Street",
      "city": "Manhattan",
      "state": "NY",
      "postalCode": 10001
   },
   "phoneNumber": [
      {
         "type": "home",
         "number": "212 456-3423"
      },
      {
         "type": "fax",
         "number": "212 256-5348"
      }
   ]
}