Represents generic product metadata, not specific to any product category.
| Metadata attribute name | Products count |
|---|---|
| colors | 10 388 654 |
| contributors | 10 915 400 |
| dimensions | 9 573 320 |
| genderFit | 1 610 210 |
| ingredients | 5 930 611 |
| manufacturerCode | 9 592 563 |
| numberOfItems | 889 221 |
| power | 12 040 |
| recommendedAge | 491 563 |
| storageConditions | 182 268 |
| volume | 780 975 |
| weight | 4 759 440 |
Product color, an array of objects. See Product colors for the list of supported values and an example.
Product contributors (book authors, music performers, etc.), a list of objects. Each contributor object has following attributes:
names — "lang" → "contributor" mappingtype — contributor type, string, one of the following:author , editor , narrator , translator — for print and audio booksartist — artist (for music recordings: composer / musician etc.)music_group — music group / bandchoir — choir / chorus / large vocal ensembleorchestra — large instrumental ensemble{
"product": {
"metadata": {
"generic": {
"contributors": [
{
"names": {
"en": "John Smith"
},
"type": "author"
},
{
"names": {
"en": "Paul Jones"
},
"type": "editor"
}
]
}
}
}
}
Product and packaging dimensions information. Product dimensions are represented by dimensions.product field, packaging dimensions — by dimensions.packaging . Each field can contain width, height, depth or length attributes, depending on the configuration of the product. Each of these attributes is a Measurement object.
"dimensions": {
// Product dimensions, if available
"product": {
// Can contain "width", "height", "depth" and / or "length" attributes
// Each attribute is a Measurement object
"width": {
"equals": {
"value": 9.5,
"unit": "cm" // Supported values: ["cm"]
}
},
"height": {
"equals": {
"value": 19.5,
"unit": "cm"
}
}
// ...
},
// Packaging dimensions, if available
"packaging": {
// Same structure as for product dimensions
}
}
Gender fit of a product, string. Can be one of the following values: male, female, unisex.
Product ingredients or materials. See Product ingredients for detailed information.
Manufacturer product code, string.
Number of individual items that are included in the product as sold, a Measurement object.
Mechanical or electrical product power (in watts), a Measurement object.
"power": {
"equals": {
"value": 750,
"unit": "watt"
}
}
Product's recommended age, a Measurement object. Most often contains a range, for example, 2-5 years or 18+ years.
"recommendedAge": {
"greaterThan": {
"value": 18,
"unit": "year"
}
}
An object, describing product storage conditions. See Storage conditions for detailed information.
Product volume information, a Measurement object.
"volume": {
"equals": {
"value": 100, // Volume value, floating point number
"unit": "ml" // Supported values: ["ml"]
}
}
Product weight information, an object containing a combination of the following fields: net (net weight), gross (gross weight) or unknown (when we lack information whether it's net or gross weight). Each field is a Measurement object.
"weight": {
"net": {
"equals": {
"value": 150.0, // Weight value, floating point number
"unit": "grams" // Supported values: ["grams"]
}
},
"gross": {
"equals": {
"value": 200.0,
"unit": "grams"
}
}
}