convert_parquet
Parquet Converter — Convert Apache Parquet to CSV, TSV, JSON, NDJSON or Excel — and back. Types are preserved in both directions: numbers stay numbers in JSON, blank cells become real nulls in Parquet, and identifier columns like '01924' stay text instead of losing their leading zero. Flat schemas only; nested or repeated columns are reported rather than silently flattened. [category: convert]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | 'jsonl' is accepted as an alias for ndjson. One side of the pair must be parquet — table→table pairs belong to convert_data. | |
| file | Yes | A .parquet file, or a .csv/.tsv/.json/.ndjson/.xlsx table to turn into Parquet. | |
| from | No | Optional but recommended when uploading csv/tsv/json/ndjson: those are indistinguishable by content, so declare which one it is. | |
| sheet | No | Optional: when the source is .xlsx, which worksheet to read (default: the first). |