Otter · JSON Structure

Public Api Item 3 Structure

Item-3 schema from Public API (Otter Public API).

Type: object Properties: 3 Required: 1
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Item-3 is a JSON Structure definition published by Otter, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

quantity id name

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-structure/public-api-item-3-structure.json",
  "name": "Item-3",
  "description": "Item-3 schema from Public API (Otter Public API).",
  "type": "object",
  "properties": {
    "quantity": {
      "minimum": 1,
      "maximum": 1000,
      "type": "int32",
      "description": "The quantity of the item ordered by the customer.",
      "example": 1
    },
    "id": {
      "type": "string",
      "nullable": true,
      "description": "The unique ID of the item.",
      "example": "33e0418f-3d56-4360-ba03-18fc5f8844a3"
    },
    "name": {
      "type": "string",
      "nullable": true,
      "description": "The name of the item as displayed to the customer.",
      "example": "Juicy Cheeseburger"
    }
  },
  "required": [
    "name"
  ]
}