How to read a JSON file containing multiple root elements?

No one has mentioned arrays:

[
  {"one": 1},
  {"two": 2}
]

Is valid JSON and might do what the OP wants.

Leave a Comment