Nutritionix · Schema
BrandedFood
A matched branded or restaurant food from instant search.
RestaurantHealthNutritionFoodFitnessPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| food_name | string | |
| serving_unit | string | |
| nix_brand_id | string | |
| brand_name_item_name | string | |
| serving_qty | number | |
| nf_calories | number | |
| photo | object | |
| brand_name | string | |
| region | integer | |
| brand_type | integer | |
| nix_item_id | string | |
| locale | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/nutritionix/refs/heads/main/json-schema/track-branded-food-schema.json",
"title": "BrandedFood",
"description": "A matched branded or restaurant food from instant search.",
"type": "object",
"properties": {
"food_name": {
"type": "string",
"example": "Big Mac"
},
"serving_unit": {
"type": "string",
"example": "burger"
},
"nix_brand_id": {
"type": "string",
"example": "513fbc1283aa2dc80c000053"
},
"brand_name_item_name": {
"type": "string",
"example": "McDonald's Big Mac"
},
"serving_qty": {
"type": "number",
"example": 1
},
"nf_calories": {
"type": "number",
"example": 540
},
"photo": {
"$ref": "#/components/schemas/Photo"
},
"brand_name": {
"type": "string",
"example": "McDonald's"
},
"region": {
"type": "integer",
"example": 1
},
"brand_type": {
"type": "integer",
"example": 1
},
"nix_item_id": {
"type": "string",
"example": "513fc9e73fe3ffd40300109f"
},
"locale": {
"type": "string",
"example": "en_US"
}
}
}