Otter · Schema

NutritionalInfo

The nutritional information of an item.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
energyKcal object
nutritionContent object
View JSON Schema on GitHub

JSON Schema

public-api-nutritional-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "NutritionalInfo",
  "description": "The nutritional information of an item.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-nutritional-info-schema.json",
  "type": "object",
  "properties": {
    "energyKcal": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-energy-kcal-schema.json"
    },
    "nutritionContent": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-nutrition-content-schema.json"
    }
  }
}