I'm trying to build a dashboard in Azure Sentinel's workbook. One of the columns is a JSON Array of varying length. I'd like to split that array so that each element in the array becomes its own column, but I can't figure out a good way to do that. Basically I want this
-----------------------------------
Company | products
-----------------------------------
Apple | [iMac, iPhone, iPad]
Microsoft | [xBox, xBox 360]
Google | [Chromebook]
--------------------------------------
To become
-----------------------------------
Company | product_1 | product_2 | product_3
-----------------------------------
Apple | iMac |iPhone |iPad
Microsoft | xBox |xBox 360 |
Google | Chromebook | |
--------------------------------------