diff options
Diffstat (limited to 'test/json-structure/nested-arrays-mixed/input.json')
-rw-r--r-- | test/json-structure/nested-arrays-mixed/input.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/json-structure/nested-arrays-mixed/input.json b/test/json-structure/nested-arrays-mixed/input.json new file mode 100644 index 0000000..d0d7617 --- /dev/null +++ b/test/json-structure/nested-arrays-mixed/input.json @@ -0,0 +1,15 @@ +[ + [ + { + "name": "Jane Doe", + "age": -1 + }, + 1, + 2 + ], + [ + 3, + 4, + 5 + ] +] |