togotools.top technical reference
Technical reference
Convert between JSON, YAML, and CSV data formats locally in your browser. Real-time conversion with row/column statistics, example loader, and one-click copy. All parsing runs client-side.
Core features
- Supports conversion between JSON, YAML, and CSV formats.
- Select source and target format via dropdowns with automatic real-time conversion.
- Row and column statistics on conversion results for data integrity verification.
- Example data loader and one-click copy of results.
Example: JSON to YAML
JSON objects map to YAML key-value pairs, arrays to YAML sequences. For CSV conversion, the first row is treated as the header.
{"name":"Ada","skills":["go","rust"]}
name: Ada
skills:
- go
- rustLimits
- Only supports JSON, YAML, and CSV formats. XML, TOML, and other formats are not supported.
- CSV conversion treats the first row as headers; data rows must match header column count.
- Complex YAML types (anchors, aliases) may not be fully supported.
Frequently asked questions
Which data formats are supported?
JSON, YAML, and CSV are supported for mutual conversion. XML, TOML, and other formats are not available.
How are CSV headers handled during conversion?
The first row is identified as the header (column names), and each subsequent row is a data record. Mismatched column counts trigger an error.