Hi,
I am new to using Streamsets, I am facing one challenge,
Below is the JSON Sample Input
{
"NAME": "TOM",
"ID": "101",
"DATE": "29-12-2022",
"ADDRESS": { "CITY": "NYC", "REGION": "NYC", "COUNTRY": "USA", "PIN": "1234" }
}
I want Output to be as :
NAME, ID, DATE, ADDRESS
TOM,101,29-12-2022,{ "CITY": "NYC","REGION": "NYC","COUNTRY": "USA","PIN": "1234"}
My Current design is giving me output as :
NAME, ID, DATE, CITY, REGION, COUNTRY, PIN
TOM,101,29-12-2022,NY,NYC,USA,1234
Note : Current design is a handover code. Here, I don't want to parse the nested JSON, just want to represent it as it is.