JavaScript Object Notation (JSON), pronounced as Jason, is the most common data interchange format on the web. Douglas Crockford first released the JSON specification in the early 2000s. It is a simple format that is easier to comprehend than XML. It is also smaller in size because it does not have closing tags. A wide variety of programming languages can parse JSON files. They also support the serialization of data structures to JSON. You can copy JSON text to JavaScript and start using them without any modifications.
CSV is an old & very popular format for storing tabular data. It has been used in the desktop as well as mainframe. It is a simple & compact format that works really well for tabular data and so is still in use today.
name,department John Doe,Engineering Jane Doe,Billing
name department John Doe Engineering Jane Doe Billing
name department "John Doe" Engineering "Jane Doe" Billing
name|department John Doe|Engineering Jane Doe|Billing
name;department John Doe;Engineering Jane Doe;Billing
name|department|address_city|address_state John Doe|Engineering|Atlanta|Georgia Jane Doe|Billingr|Hayward|California
name|department|address__city|address__state John Doe|Engineering|Atlanta|Georgia Jane Doe|Billingr|Hayward|California
name|department|address/city|address/state John Doe|Engineering|Atlanta|Georgia Jane Doe|Billingr|Hayward|California
name|department John Doe|Engineering Jane Doe|Billing
name|department|address.city|address.state John Doe|Engineering|Atlanta|Georgia Jane Doe|Billingr|Hayward|California
name,department John Doe,Engineering Jane Doe,Billingr
John Doe,Engineering Jane Doe,Billingr
Use this if your input JSON has such boolean values in Sentence or Capital casing. However, this will also transform such words inside JSON strings (i.e inside double quotes)
{"name": "Robin Hood","department": "","manager": "","salary": 200} {"name": "Arsene Wenger","department": "Bar","manager": "Friar Tuck","salary": 50} {"name": "Friar Tuck","department": "Foo","manager": "Robin Hood","salary": 100}