32 chars · 3 lines
32 chars · 3 lines
32 chars · 3 lines
32 chars · 3 lines
CSV boolean-type preservation
The active cells spell true and false, but those tokens are still just CSV text. Without a schema, the converter cannot know whether they represent booleans, labels, status codes, or literal text. This tool is free to use. No account or payment is required.
Last updated
Automatic coercion can corrupt datasets where true and false are labels or where alternate tokens such as yes, no, 1, and 0 are used inconsistently. Explicit conversion keeps that decision visible.
The output below is the actual JSON produced by the same CSV to JSON mode for the preloaded source.
name,active
Ada,true
Linus,false[
{
"name": "Ada",
"active": "true"
},
{
"name": "Linus",
"active": "false"
}
]Common questions
The converter preserves CSV cell text and does not infer booleans.
Yes. Use an explicit schema-aware transformation after parsing.
No. It does not guess boolean token conventions.
Debugging a specific CSV issue? Browse CSV troubleshooting.