Nutritionix · Schema

Photo

Image URLs associated with a food or exercise.

RestaurantHealthNutritionFoodFitnessPublic APIs

Properties

Name Type Description
thumb string
highres string
is_user_uploaded boolean
View JSON Schema on GitHub

JSON Schema

track-photo-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-photo-schema.json",
  "title": "Photo",
  "description": "Image URLs associated with a food or exercise.",
  "type": "object",
  "properties": {
    "thumb": {
      "type": "string",
      "format": "uri",
      "nullable": true,
      "example": "https://nix-tag-images.s3.amazonaws.com/402_thumb.jpg"
    },
    "highres": {
      "type": "string",
      "format": "uri",
      "nullable": true
    },
    "is_user_uploaded": {
      "type": "boolean",
      "default": false
    }
  }
}