Refer to Cart Analysis object array, my team is implementing the array to View Cart and Checkout Complete events (in an ecommerce app) and found that there are a few items have been added to the array where they actually sent several items.
For example,
The following is what we’ve sent from the code
"product_list_viewed : [<br /> {<br /> id: 5646,<br /> name: 'Product A',<br /> price: '20'<br /> },<br /> {<br /> id: 2456,<br /> name: 'Product B',<br /> price: '24'<br /> }<br /> {<br /> id: 3534,<br /> name: 'Product C',<br /> price: '26'<br /> }<br /> {<br /> id: 4356,<br /> name: 'Product D',<br /> price: '6'<br /> }<br /> {<br /> id: 0884,<br /> name: 'Product E',<br /> price: '16'<br /> }<br /><br />]"
What it shows in Amplitude Live Event looks like this
"product_list_viewed : [<br /> {<br /> id: 5646,<br /> name: 'Product A',<br /> price: '20'<br /> },<br /> {<br /> id: 2456,<br /> name: 'Product B',<br /> price: '24'<br /> }<br /><br /><br />]"
Please note that the property key name and value are longer than the example I showed above
- Is this related to the character limit ?
- From question #1, what is the character limit for event properties object array (in terms of cart analysis feature) ? Is it the same as user properties array (10000 chars) ? I couldn’t find any article about this yet.
- What if I can split the data in the array, will this issue resolve (I mean no limit anymore) ? Or If I have subscribed to the Growth plan, will this character limit increase ? (I currently in Growth plan for Production account, but for testing account it’s just starter plan)