1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
{
// bare keys
bareKey: "Hello",
$: "Dollar",
foo : "Foo",
bar
: { "bar": true }
"firstName": "John",
"lastName": "Smith",
"age": 25,
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021",
"country": "US"
},
"ellipsis": {
"object": { ... },
...
"list": [ ... ],
"locations": {
...
"city": "New York",
...
"postalCode": "10021",
...
},
"key": ...,
...
},
"comments": { // comments
"key": "value", // in
"list": [
// most
], // locations
"key": "value",
"emptyObject": { // comment
}
},
...
"errors": {
"object": { "a", "b" }
},
"emptyObject": {} // comment
}
|