Otter · Schema

User

User schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
id string The user identifier.
userFields array The user info fields.
View JSON Schema on GitHub

JSON Schema

public-api-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "User",
  "description": "User schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-user-schema.json",
  "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"
      }
    }
  }
}