- What operations?
- Rename columns, reorder, drop unwanted, duplicate. Combine freely — rename + drop happens in one pass.
- Does it validate data types?
- No — purely structural. For type validation use CSV Schema Validator.
- Can I add computed columns?
- Limited — you can rename and reorder. For computed columns (concatenate, parse date), use SQL-like tools after converting to JSON.
- Will it preserve quoting?
- Yes — RFC 4180 compliant. Commas and quotes inside values are properly escaped in the output.