I understand that lists are one of the property types associated with event data. The example given is usually of a flat list, eg
{'groceries': ['milk', 'eggs', 'bananas']}
However what we'd like to do is associate a SKU with each item, eg:
{'groceries': [ {'sku': 123, 'name': 'milk'}, Â {'sku':Â 456, 'name': 'eggs'}, Â {'sku': 789, 'name': 'bananas'} ] }
Is that possible?