Visualize JSON
Working a little bit like <CFDUMP >, JSON Visualization allows you to quickly view your structures outline. Also from the left hand menu there are some basic options to manipulate/preserve the data futher.
If you want to test it out below is a block of JSON from Wikipedia
ColdFISH is developed by Jason Delmore. Source code and license information available at coldfish.riaforge.org
{
"firstName": "John",
"lastName": "Smith",
"age": 25,
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021"
},
"phoneNumber": [
{ "type": "home", "number": "212 555-1234" },
{ "type": "fax", "number": "646 555-4567" }
],
"newSubscription": false,
"companyName": null
}
1{
2"firstName": "John",
3"lastName": "Smith",
4"age": 25,
5"address": {
6"streetAddress": "21 2nd Street",
7"city": "New York",
8"state": "NY",
9"postalCode": "10021"
10},
11"phoneNumber": [
12{ "type": "home", "number": "212 555-1234" },
13{ "type": "fax", "number": "646 555-4567" }
14],
15"newSubscription": false,
16"companyName": null
17}