Formátovač JSON
Formátovat, validovat a minifikovat JSON
Vstup
Výstup
Příklady
| Mode | Input | Použít |
|---|---|---|
| Formátovat | {"name":"Alice","age":30,"active":true} | |
| Formátovat | [{"id":1,"name":"foo"},{"id":2,"name":"bar"}] | |
| Minifikovat | { "name": "Alice", "age": 30, "active": true } | |
| Minifikovat | [ { "id": 1 }, { "id": 2 } ] | |
| Validovat | {"status":"ok","code":200} | |
| Validovat | {"broken": true,} |