Food nutriments information is an object containing amounts of various nutriments that are contained in the product. Here is a full list of available nutriments:
{
// Fat contents per 100 grams, an Amount object.
"fat": {
"equals": {
"value": 1.0,
"unit": "grams" // Supported values" ["grams", "mg"]
}
},
// Proteins contents per 100 grams, an Amount object.
"proteins": {
"equals": {
"value": 12.0,
"unit": "grams"
}
},
// Carbohydrates contents per 100 grams, an Amount object.
"carbohydrates": {
"equals": {
"value": 34.5,
"unit": "grams"
}
},
// Energy value per 100 grams, an Amount object.
"energy": {
"equals": {
"value": 654.0,
"unit": "kcal" // Supported values" ["kcal"]
}
},
// Cholesterol contents per 100 grams, an Amount object.
"cholesterol": {
"equals": {
"value": 10,
"unit": "mg"
}
},
// Sodium (Na) contents per 100 grams, an Amount object.
"sodium": {
"equals": {
"value": 20,
"unit": "mg"
}
},
// Potassium (K) contents per 100 grams, an Amount object.
"potassium": {
"equals": {
"value": 30,
"unit": "mg"
}
},
// Calcium (Ca) contents per 100 grams, an Amount object.
"calcium": {
"equals": {
"value": 40,
"unit": "mg"
}
}
}