Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
imagine the following JSON schema:
{
...
"structure" : {
"time_field" : {
"date" : {
"name" : "Date",
"type" : "datetime"
}
},
"dimensions" : {
"campaign_id" : {
"access" : true,
"name" : "Campaign ID",
"type" : "id",
},
"campaign_name" : {
"name" : "Campaign Name",
"maxLength" : 256,
"type" : "string"
},
"strategy_id" : {
"access" : true,
"name" : "Strategy ID",
"type" : "id"
},
"strategy_name" : {
"name" : "Strategy Name",
"maxLength" : 256,
"type" : "string"
}
},
...
}
Now I need to extract the name of each dimension (campaign_id, strategy_id etc.).
This is my try via tExtractJSONFields:
But I only get the name of the first dimension (campaign_id).
Could you please help?
Thanks
Simon
Hi,
I solved this one on my own:
Thanks anyway!
Right! I can now iterate over each dimension name which is really helpful facing the fact that I've to process json files with about 50 dimension elements - no separate (static) columns needed.