I have a CSV which looks like this:
When I convert it to JSON I get this:
{
"Thing1": "Value1",
"Thing2": "Value2",
"Thing3": 2209,
"": 2210,
... etc
}
What I want is for it to look like this:
{
"Thing1": "Value1",
"Thing2": "Value2",
"Thing3": {
2209,
2210,
2210,
... etc
}
}
Do I need to write a script to make this? Thanks