Convert (JSON to CSV) / Testing is broken

Hi @Cumonvip,

JSON formatting is in base always the same, you have to start with curly opening en closing brackets. And within the JSON body u have a “key” and a “value”. Also notice that apostrophes need to be straight as you see above they are formatted as opening and closing apostrophes so don’t copy anything from below but tripe over or change the apostrophes. Also keep in mind that every row end with a comma except the last! And also not when there is just one row.

{
“Key1”:”value1”,
“Key2”:”value2”,
“Key3”:”value3”
}

I hope this helps you further!

Also the data you copied as JSON, misses the closing brackets, that probably why it does not see it as valid JSON

1 Like