Hi, is there a way to specify the order of the fields when writing with JSON3. E.g. in julia 1.7, JSON3.pretty(Dict("a" => 1, "b" => 2, "c" => 3, "d" => 4)) yields
keep in mind JSON spec is order-less, while it might be pleasing to human eyes, make sure don’t depend on the order at any stage of your pipeline (yes, it has happened to me that someone wrote a order-dependent JSON parser in C++ and took 10 hours to debug)