Skip to main content
ShrinkJSON
JSON Formatter
Home
Tools
Converters
Blog
Toggle theme
Open Navigation
JSON Formatter
Format and beautify your JSON data
JSON Input
2 Spaces
4 Spaces
Tabs
Generate Sample
{ "roadmap": { "quarter": "2024-Q4", "milestones": [ { "id": "m-1", "name": "Data contracts rollout", "owner": "Liang", "status": "blocked", "eta": "2026-07-19" }, { "id": "m-2", "name": "Edge cache warmup", "owner": "Mateo", "status": "on-track", "eta": "2026-07-16" }, { "id": "m-3", "name": "Realtime alerts", "owner": "John", "status": "on-track", "eta": "2026-08-05" } ] }, "squads": [ { "name": "Harbor", "members": [ "John", "Mateo", "Ravi" ], "velocity": 22 }, { "name": "Orion", "members": [ "John", "Elena", "Ravi", "Mateo" ], "velocity": 36 }, { "name": "Quill", "members": [ "Mateo", "Liang" ], "velocity": 18 } ], "experiments": [ { "id": "exp-1", "hypothesis": "Contract tests prevent breaking changes", "metric": "activationRate", "result": "positive" } ] }
Formatted Output
Copy
{ "roadmap": { "quarter": "2024-Q4", "milestones": [ { "id": "m-1", "name": "Data contracts rollout", "owner": "Liang", "status": "blocked", "eta": "2026-07-19" }, { "id": "m-2", "name": "Edge cache warmup", "owner": "Mateo", "status": "on-track", "eta": "2026-07-16" }, { "id": "m-3", "name": "Realtime alerts", "owner": "John", "status": "on-track", "eta": "2026-08-05" } ] }, "squads": [ { "name": "Harbor", "members": [ "John", "Mateo", "Ravi" ], "velocity": 22 }, { "name": "Orion", "members": [ "John", "Elena", "Ravi", "Mateo" ], "velocity": 36 }, { "name": "Quill", "members": [ "Mateo", "Liang" ], "velocity": 18 } ], "experiments": [ { "id": "exp-1", "hypothesis": "Contract tests prevent breaking changes", "metric": "activationRate", "result": "positive" } ] }