duster/js/test_cases/helpers_lt/input1.json

73 lines
843 B
JSON
Raw Normal View History

2020-05-16 19:45:57 +00:00
{
"str": "master",
"int": 7,
"alpha": 21,
"beta": "21",
"null": null,
"true_value": true,
"false_value": false,
"array_lower": [
3,
5,
7
],
2020-05-16 21:53:57 +00:00
"array_lower_with_array": [
3,
5,
[
7
]
],
2020-05-16 19:45:57 +00:00
"copy_array_lower": [
3,
5,
7
],
"array_higher": [
8,
9
],
2020-05-16 21:53:57 +00:00
"array_higher_longer": [
8,
9,
1
],
2020-05-16 19:45:57 +00:00
"some_obj": {
"name": "cat"
},
"copy_some_obj": {
"name": "cat"
},
"other_obj": {
"name": "dog"
},
"array_of_some_obj": [
{
"name": "cat"
},
{
"name": "cat"
}
],
"copy_array_of_some_obj": [
{
"name": "cat"
},
{
"name": "cat"
}
],
"array_of_other_obj": [
{
"name": "dog"
},
{
"name": "dog"
}
],
"array_of_strings": [
"cat",
"dog"
]
}