20 lines
381 B
JSON
20 lines
381 B
JSON
|
|
{
|
||
|
|
"name": "json helper fixture",
|
||
|
|
"count": 42,
|
||
|
|
"ratio": 2.5,
|
||
|
|
"negative": -17,
|
||
|
|
"enabled": true,
|
||
|
|
"disabled": false,
|
||
|
|
"nested": {
|
||
|
|
"inner": "value",
|
||
|
|
"innercount": 7
|
||
|
|
},
|
||
|
|
"integers": [10, 20, 30],
|
||
|
|
"strings": ["alpha", "beta"],
|
||
|
|
"objects": [
|
||
|
|
{ "id": 1 },
|
||
|
|
{ "id": 2 }
|
||
|
|
],
|
||
|
|
"mixed": [1, "two", { "three": 3 }]
|
||
|
|
}
|