With data coming into Amplitude from Segment, I have an event that tracks orders that looks like the below example.
analytics.track('user@email.com', 'Order Completed', {
'email': 'user@email.com',
'order_id': '12345',
'platform': 'Website',
'products': [
{
'category': 'Soap',
'price': 4.99,
'sku': 'SP-SML'
}
],
'sales_channel': 'Website',
'shipping': 0.0,
'total': 4.99
})
Is it possible to create a chart that can then track the different Category values here? Bearing in mind it is possible for one of these events to have multiple products in it.