The manual does warn: [quote:3gzohxnx]The actions in the Manipulation category (e.g. Push, Pop) allow one-dimensional arrays to be used like other data structures. (These actions work with multidimensional arrays, but are intended for the one-dimensional case.)
I wouldn't use the push/insert operations on a multi-dimensional array. This example just sets them explicitly. You may want to use a dictionary, to index by name.
Yeah but I need to create complex hierarchies of data and contain it all within one JSON file. The Dictionary really isn't ideal for that.
The way I'm reading it the manual states that push and pop does work with multidimensional arrays, so I fail to see what the issue is.