(2020-Sep-13) Array of arrays, in a JSON world, it’s a very common concept to have a set of sets of other elements in a dataset. Despite how strange it may sound, our real life is filled with similar analogies: books arranged by categories in a library, plates stacked up in a cupboard, or even someone’s closet has many sections that are filled with different clothing items. Arrays are part of our daily life too 🙂
In my previous blog post - Setting default values for Array parameters/variables in Azure Data Factory, I had helped myself to remember that arrays could be passed as parameters to my Azure Data Factory (ADF) pipelines. This time I’m helping myself to remember that an array of other arrays can also exist as ADF pipeline parameters’ values.
(1) Simple array of values:
This array will be passed into my par_meal_array parameter
Then Azure Data Factory ForEach will loop through this set of elements and each individual value will be referenced with the use of the @item() expression.
(2) Simple array with sub-elements:
- @item().meal_type
- @item().meal_time