Found the outstanding way to validate json files in command line:
cat file_to_parse.json | python -m json.tool
In love with command line tools.
UPD: or just this way: python -m json.tool file_to_parse.json
cat file_to_parse.json | python -m json.tool
In love with command line tools.
UPD: or just this way: python -m json.tool file_to_parse.json