Otter · JSON Structure

Public Api Upsert Storelink Event Structure

UpsertStorelinkEvent schema from Public API (Otter Public API).

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

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

Properties

credentialsSchemaVersion credentials storeInfo

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-upsert-storelink-event-structure.json",
  "name": "UpsertStorelinkEvent",
  "description": "UpsertStorelinkEvent schema from Public API (Otter Public API).",
  "type": "object",
  "properties": {
    "credentialsSchemaVersion": {
      "type": "string",
      "description": "The version of the credentials schema.",
      "example": "1.0"
    },
    "credentials": {
      "type": "array",
      "description": "Array of fulfilled credentials containing its keys and values.",
      "items": {
        "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-fulfilled-credential-schema.json"
      },
      "example": [
        {
          "key": "email",
          "value": "test@email.com"
        },
        {
          "key": "password",
          "value": "test-pwd-1234"
        }
      ]
    },
    "storeInfo": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-store-info-2-schema.json"
    }
  },
  "required": [
    "credentialsSchemaVersion",
    "credentials",
    "storeInfo"
  ]
}