摇动转换数组键

时间:2018-10-19 09:36:09

标签: jolt

我想通过使用jolt转换数组json中的键 输入

  

[     {       “ TestString”:“ AGC”,       “ TestNumber”:“ 3”     },     {       “ TestString”:“ DDD”,       “ TestNumber”:“ 2”     }   ]

输出:

  

[     {       “ test_string”:“ AGC”,       “ test_number”:“ 3”     },     {       “ test_string”:“ DDD”,       “ test_number”:“ 2”     }   ]

震动规格将是什么?

1 个答案:

答案 0 :(得分:1)

[{“ operation”:“ shift”,“ spec”:{“ *”:{“ TestString”:“ [&1] .test_string”,“ TestNumber”:“ [&1] .test_number”}}}]