in2csv from JSON to csv
Created by: kboghdady
I am having this issue I have this JSON file as follow
[
{
"ID": "15",
"address": {
"address": "300 my addres",
"address2": "APT 233",
"city": "Stanford",
"fax": "(111)345 345",
"name": "Pie",
"officeName": "My office",
"phoneNumbers": [
"(623) 222 222"
],
"state": "CA",
"title": "IT",
"zip": "22222"
}
}
]
If I use the cat jsonfile | in2csv -f json -v
the result will be
ID,address
15,
If I use the web tool it works just fine . !! Any suggestions ???