KateNoji turns messy CSV files into predictable, schema-safe JSON — with explicit warnings and zero silent failures.
{
"schema": {
"email": "string",
"created_at": "date",
"amount": "number"
},
"data": [
{
"email": "user@test.com",
"created_at": "2024-01-15",
"amount": 1234.56
}
],
"meta": {
"rows_processed": 3,
"encoding_detected": "utf-8",
"delimiter_detected": ",",
"warnings": []
}
}