With this particular dataset, each of our products contains at least one variation but can contain several. This normally goes hand-in-hand with the number of images but does not always correlate. Variations can be things such as color or size.
On our Product object, we have two keys which are going to help us display the variations. These are variationTypes, which list the names of the variations such as size and color, and variationProducts,which contains all of the variations. Each product within the variationProducts object has a further object of variant, which lists all of the changeable properties. For example, if a jacket came in two colors and each color had three sizes, there would be six variationProducts, each with two variant properties.
Every product will contain at least one variation, although if there is only one variation, we may need to consider...