json を見やすく整形表示
以下のコマンドを実行
python -mjson.tool input.json
項目がアルファベット順に並んでしまい、それを避けたい場合
cat input.json | python -c "import json, sys, collections; print(json.dumps(json.loads(sys.stdin.read(), object_pairs_hook=collections.OrderedDict), indent=4))"
以下のURLを参考にした
https://github.com/lukepark327/onechain/issues/40