If you must split it, you should be able to use SplitJson with a
JSONPath of "$.mylist". Note that your example is not actually JSON,
it would have to be enclosed as an object with {}.Regards, Matt On Thu, Sep 6, 2018 at 2:53 PM l vic <[email protected]> wrote: > > I have array: > "mylist": [{ > "id": 10, > "info": "2am-3am" > }, > { > "id": 11, > "info": "3AM-4AM" > }, > { > "id": 12, > "info": "4am-5am" > }] > How can i use combination of SplitJson / JsonPath to split it into multiple > flows per array element? > Thanks, > V >
