I would like to have write_json
output a top level array, something to the effect of:
[{...},{...},{...},...,{...}]
But when I pass a list to write_json
, it converts to a json full of blank keys.
{"":{...},"":{...},"":{...},..."":{...}}
Using add_child
actually respects the array and gives me the closest thing of:
{"Some Key":[{...},{...},{...},...,{...}]}
But that's still not what I want.
Any idea how to make that array top level?