33 lines
426 B
JSON
33 lines
426 B
JSON
{
|
|
"name": "Bob",
|
|
"people": [
|
|
{
|
|
"name": "Alice",
|
|
"petname": "rover"
|
|
}
|
|
],
|
|
"truthy": "some truthy value",
|
|
"other_petname": [
|
|
{
|
|
"petname": "spot"
|
|
}
|
|
],
|
|
"array_petname": [
|
|
{
|
|
"petname": [
|
|
"foo",
|
|
"bar"
|
|
]
|
|
}
|
|
],
|
|
"some_object": {
|
|
"foo": "bar"
|
|
},
|
|
"some_same_object": {
|
|
"foo": "bar"
|
|
},
|
|
"some_different_object": {
|
|
"foo": "baz"
|
|
}
|
|
}
|