Otter · Schema

SelfDropDeliveryInfo

SelfDropDeliveryInfo schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics
View JSON Schema on GitHub

JSON Schema

public-api-self-drop-delivery-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SelfDropDeliveryInfo",
  "description": "SelfDropDeliveryInfo schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-self-drop-delivery-info-schema.json",
  "allOf": [
    {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-delivery-metadata-schema.json"
    },
    {
      "required": [
        "delivererName"
      ],
      "type": "object",
      "description": "Detailed delivery information for self-delivered shipments.",
      "properties": {
        "delivererName": {
          "type": "string",
          "description": "The name of the deliverer.",
          "example": "Local Delivery Service"
        },
        "delivererEmailAddress": {
          "type": "string",
          "description": "The email address of the deliverer.",
          "example": "[email protected]"
        }
      },
      "additionalProperties": true
    }
  ]
}