Relevant for food and beverages, may contain following fields:
| Metadata attribute name | Products count |
|---|---|
| nutrimentsPer100Grams | 1 236 295 |
| nutriScore | 743 308 |
Food nutriments information, an object. Each nutriment is represented by a Measurement object. Supported nutriments:
energy — energy value per 100 grams, measured in kcal proteins — proteins contents per 100 grams, measured in gramsfat — fat contents per 100 grams, measured in gramssaturatedFat — saturated fat contents per 100 grams, measured in gramstransFat — trans fat contents per 100 grams, measured in gramscarbohydrates — carbohydrates contents per 100 grams, measured in gramstotalSugars — total sugars contents per 100 grams, measured in gramsaddedSugars — added sugars contents per 100 grams, measured in gramsfiber — fiber contents per 100 grams, measured in gramscholesterol — cholesterol contents per 100 grams, measured in mgsodium — sodium (Na) contents per 100 grams, measured in mgpotassium — potassium (K) contents per 100 grams, measured in mgcalcium — calcium (Ca) contents per 100 grams, measured in mgiron — iron (Fe) contents per 100 grams, measured in mgvitaminD — vitamin D contents per 100 grams, measured in mgExample:
{
"product": {
"metadata": {
"food": {
"nutrimentsPer100Grams": {
"energy": {
"equals": {
"value": 654.0,
"unit": "kcal"
}
},
"proteins": {
"equals": {
"value": 12.0,
"unit": "grams"
}
},
// ...
"vitaminD": {
"equals": {
"value": 20,
"unit": "mg"
}
}
}
}
}
}
}
Product Nutri-Score, an object:
"nutriScore": {
"score": 1, // Nutri-Score, an integer
"grade": "B" // Nutri-Score letter grade (from "A" to "E")
}