Hi,
I have records which could contain nested fields with a high depth.
And I want to convert part of the nested field to the part of the value.
What I have before
{
"a":{
"b":{
"c":{
"d":{
"e":{
"f":"some value"
}
}
}
}
}
}
What I want as a result
{
"a":{
"b":{
"c":"d.e.f:some value"
}
}
}
Is it possible to do?