I have a JSON look like:
[
  {
    "mainId": 12854,
    "subIds": [
      25,
      26,
      27
    ]
  }
]
I want to split values inside subIds to create diffrent rows.
Can I get expected result with JOLT?
[
  {
    "mainId": 12854,
    "subId": 25
  },
  {
    "mainId": 12854,
    "subId": 26
  },
  {
    "mainId": 12854,
    "subId": 27
  }
]
                You can walk through the indexes of subIds array while grabbing the value of mainId by @(2,mainId) in order to going up the three two levels, and using [&1] as common factor to reach those indexes such as
[
  {
    "operation": "shift",
    "spec": {
      "*": {
        "*s": {
          "*": {
            "@": "[&1].&(2,1)", // &(2,1) : going two levels up the tree to extract the value "subId" from "subIds" by using 1 as the second argument to represent te first asterisk(which might be multiple)
            "@(2,mainId)": "[&1].mainId"
          }
        }
      }
    }
  }
]
the demo on the site http://jolt-demo.appspot.com/ is

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With