Charles
03/25/2021, 10:10 AMTanmay Movva
03/25/2021, 11:35 AMname
and age
in schemaConfig.
After that, You need to use the json inbuilt functions in the transform config to extract those fields.Tanmay Movva
03/25/2021, 11:38 AM"transformConfigs": [
{
"columnName": "merchant_id",
"transformFunction": "jsonPathString(data, '$.name')"
}]
This is an example to extract name from the field data.Tanmay Movva
03/25/2021, 11:39 AMCharles
03/25/2021, 11:39 AMTanmay Movva
03/25/2021, 11:39 AMselect name from your_table
Tanmay Movva
03/25/2021, 11:40 AMCharles
03/25/2021, 11:40 AMCharles
03/25/2021, 11:41 AMCharles
03/25/2021, 11:41 AMTanmay Movva
03/25/2021, 11:41 AM