JSON Formatter
JSON Input:
{ "name": "George Washington", "birth": { "date": "1732-02-22", "place": "Westmoreland County, Virginia" }, "roles": ["General", "President"], "presidency": { "term_start": "1789-04-30", "term_end": "1797-03-04", "number": 1 } }
JSON Formatted:
{ "name": "George Washington", "birth": { "date": "1732-02-22", "place": "Westmoreland County, Virginia" }, "roles": [ "General", "President" ], "presidency": { "term_start": "1789-04-30", "term_end": "1797-03-04", "number": 1 } }
Indent spaces:
References:
JSON on Wikipedia