Nutritionix · Schema

Brand

A food or restaurant brand.

RestaurantHealthNutritionFoodFitnessPublic APIs

Properties

Name Type Description
_id string
name string
website string
type integer Brand type (1 for restaurant, 2 for grocery/CPG).
View JSON Schema on GitHub

JSON Schema

track-brand-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nutritionix/refs/heads/main/json-schema/track-brand-schema.json",
  "title": "Brand",
  "description": "A food or restaurant brand.",
  "type": "object",
  "properties": {
    "_id": {
      "type": "string",
      "example": "513fbc1283aa2dc80c000053"
    },
    "name": {
      "type": "string",
      "example": "McDonald's"
    },
    "website": {
      "type": "string",
      "format": "uri",
      "nullable": true
    },
    "type": {
      "type": "integer",
      "description": "Brand type (1 for restaurant, 2 for grocery/CPG).",
      "example": 1
    }
  }
}