Hello,
I am dealing with json output file for which I need to add these square bracket to. Down below i have shown how Name can have different values and how the outcome should look like. Please advise, thank you.
Data1
"Name": "AAA","BBB","CCC"
Expected Outcome1
"Name": ["AAA","BBB","CCC"]
Data 2
"Name":""
Expected Outcome2
"Name": []
Data 3
"Name":"HHH"
Expected Outcome3
"Name": ["HHH"]