Metadata availability and contents may vary depending on the product type. At the moment several types of metadata may be available:
External ids metadata may contain these fields:
Name | Description | Count |
---|---|---|
externalIds.amazonAsin | Amazon Standard Identification Number, string. | 1 279 363 (2% of products) |
An example of external ids metadata:
{
// ...
"product": {
"metadata": {
"externalIds": {
"amazonAsin": "AMAZONASIN"
}
}
}
}
Generic metadata may contain these fields:
Name | Description | Count |
---|---|---|
generic.ingredients | Product ingredients or materials. See Product ingredients for detailed information. | 5 662 630 (9% of products) |
generic.contributors | Product contributors (book authors, musicCD performers, etc.), a list of objects. Each contributor object has following attributes:
|
10 970 433 (18% of products) |
generic.weight |
Product weight information, a list of objects:
|
3 534 691 (6% of products) |
generic.volume |
Product volume information, an object:
|
248 739 (0% of products) |
generic.dimensions |
Product and packaging dimensions information, an object:
|
7 316 750 (12% of products) |
generic.manufacturerCode | Manufacturer product code, string. | 12 341 577 (20% of products) |
generic.color | Product color, one of strings: beige , black , blue , bronze , brown , chrome , dark_blue , gold , gray , green , ivory , khaki , light_blue , magenta_fuchsia , multi , orange , pink , purple , red , silver , transparent , white , yellow . |
7 864 669 (13% of products) |
An example of generic metadata:
{
// ...
"product": {
"metadata": {
"generic": {
"manufacturerCode": "PRODUCT-CODE-123",
"color": "white",
"contributors": [
{
"names": {
"en": "John Smith"
},
"type": "author"
}
]
}
}
}
}
Food metadata may contain these fields:
Name | Description | Count |
---|---|---|
food.nutrimentsPer100Grams |
Food nutriments information, an object:
|
1 170 995 (52% of food products) |
food.nutriScore |
Product Nutri-Score, an object:
|
786 428 (35% of food products) |
An example of food metadata:
{
// ...
"product": {
"metadata": {
"food": {
"nutrimentsPer100Grams": {
"fatGrams": 1.0,
"proteinsGrams": 12.0,
"carbohydratesGrams": 34.5,
"energyKCal": 654.0
},
"nutriScore": {
"score": 1,
"grade": "B"
}
}
}
}
}
Print book metadata may contain these fields:
Name | Description | Count |
---|---|---|
printBook.numPages | Number of pages in print book, integer. | 7 188 359 (71% of print books) |
printBook.publishedYear | Book publication year, integer. | 8 146 225 (81% of print books) |
printBook.bisacCodes | BISAC codes of a print book, list of strings. | 1 243 434 (12% of print books) |
printBook.bindingType | Book binding type, one of strings: hardcover , paperback . |
8 300 915 (82% of print books) |
An example of print book metadata:
{
// ...
"product": {
"metadata": {
"printBook": {
"numPages": 123,
"publishedYear": 2021,
"bisacCodes": ["FIC027110"],
"bindingType": "paperback"
}
}
}
}
Music CD metadata may contain these fields:
Name | Description | Count |
---|---|---|
musicCD.releasedYear | Year of first music CD release, integer. | 1 371 301 (96% of music CDs) |
musicCD.numberOfDiscs | Number of discs, integer. | 360 455 (25% of music CDs) |
An example of music CD metadata:
{
// ...
"product": {
"metadata": {
"musicCD": {
"releasedYear": 1990,
"numberOfDiscs": 1
}
}
}
}