Jolt 在顶层添加 属性 到 json

Jolt add property at the top level to json

我需要从 REST API 转换我的 JSON。我有:

[
  {
    "id": 59,
    "success": true,
    "errors": []
  },
  {
    "id": 18,
    "success": true,
    "errors": []
  }
]

我如何将其转换为以下 JSON:

{
  "status": [
    {
      "id": 1812854,
      "success": true,
      "errors": []
    },
    {
      "id": 1815562,
      "success": true,
      "errors": []
    }
  ]
}

我需要在源 JSON 的顶层添加 status。 JOLT 可以吗?

你可以使用下面的shift转换

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