Otter · JSON Structure

Public Api User Account Structure

UserAccount schema from Public API (Otter Public API).

Type: object Properties: 3
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

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

Properties

id userFields balances

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-user-account-structure.json",
  "name": "UserAccount",
  "description": "UserAccount schema from Public API (Otter Public API).",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The user identifier.",
      "example": "somestring"
    },
    "userFields": {
      "type": "array",
      "description": "The user info fields.",
      "items": {
        "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-user-field-schema.json"
      }
    },
    "balances": {
      "type": "array",
      "description": "The user's current balances.",
      "items": {
        "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-user-balance-schema.json"
      }
    }
  }
}