Jolt 规范将二维数组转换为一维数组

Jolt spec convert 2d array to 1d array

如何将二维数组转换为一维数组

{ "test": [ ["1", "2", "3"], ["4"] ] }

{ "test" : ["1", "2", "3", "4"] }

我试了很多东西都没有用

这个规范应该可以解决问题:

[
  {
    "operation": "shift",
    "spec": {
      "test": {
        "*": {
          "*": "test"
        }
      }
    }
  }
]