Formátovač JSON
Formátovanie, validácia a minifikácia JSON
Vstup
Výstup
Príklady
| Mode | Input | Použiť |
|---|---|---|
| Formátovať | {"name":"Alice","age":30,"active":true} | |
| Formátovať | [{"id":1,"name":"foo"},{"id":2,"name":"bar"}] | |
| Minifikovať | { "name": "Alice", "age": 30, "active": true } | |
| Minifikovať | [ { "id": 1 }, { "id": 2 } ] | |
| Validovať | {"status":"ok","code":200} | |
| Validovať | {"broken": true,} |