Otter · JSON Structure

Public Api Dropoff Instructions Structure

Requirements to verify the completion of the delivery.

Type: object Properties: 2
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

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

Properties

dropoffType verificationRequirements

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-dropoff-instructions-structure.json",
  "name": "DropoffInstructions",
  "description": "Requirements to verify the completion of the delivery.",
  "type": "object",
  "properties": {
    "dropoffType": {
      "type": "string",
      "description": "The drop-off type for the delivery.",
      "enum": [
        "MEET_AT_DOOR",
        "LEAVE_AT_DOOR",
        "MEET_IN_LOBBY"
      ],
      "example": "MEET_AT_DOOR"
    },
    "verificationRequirements": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-verification-requirements-schema.json"
    }
  }
}