TOML to JSON

Indent:
{
  "title": "ToolsContainer",
  "version": "1.0.0",
  "debug": false,
  "server": {
    "host": "localhost",
    "port": 3000,
    "timeout": 30
  },
  "database": {
    "host": "localhost",
    "port": 5432,
    "name": "toolscontainer",
    "ssl": true
  },
  "features": [
    {
      "name": "TOML to JSON",
      "enabled": true,
      "priority": 1
    },
    {
      "name": "YAML to JSON",
      "enabled": true,
      "priority": 2
    }
  ],
  "limits": {
    "max_file_size_mb": 10,
    "requests_per_minute": 60,
    "tags": [
      "free",
      "converter",
      "utility"
    ]
  }
}

✓ Valid TOML — converted successfully

TOML Quick Reference

Stringname = "Alice"
Integerport = 5432
Floatpi = 3.14
Booleandebug = false
Arraytags = ["a", "b"]
Table[section]
Array of tables[[items]]
Comment# this is a comment

Tool Categories