flatterer icon indicating copy to clipboard operation
flatterer copied to clipboard

Opinionated JSON to CSV/XLSX/SQLITE/PARQUET converter. Flattens JSON fast.

Results 13 flatterer issues
Sort by recently updated
recently updated
newest added

e.g. `anyOf`, `allOf` ? I figure this can be added to the documentation.

in this example would like separate table for abc (with 2 rows, 1 row having value of 2 another row having value of 3) { "stuff":"a" ,"abc":[2,3] }

would be good to have an option of max string length, then u could say write out the first 65536 characters of a value into a column

given this json ``` { "id": 1, "name":"don", "title": "A Game", "releaseDate": "2015-01-01", "things": [ {"name":"Xbox","yoid":99, "zs": [{"cd":"a"},{"cd":"b"}]}, {"name":"Playstation"} ], "rating": { "code": "E", "name": "Everyone" } } ``` would...

some target systems have limits on the number of columns in a table ie table can have max 2000 columns if the top level of the json had 1500 different...

would be great to have option to write all columns as STRING data type in the final parquet, instead of int..etc

is there option to rename the column headers in the final csvs?

While browsing, I stumbled upon this tool. My initial idea was to create something similar, but I figured I'd explore first to see if anyone had already tackled this. To...