Otter · Schema

UpdateDeliveryRequestCallbackRequest

Updated Delivery information.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
currencyCode string The 3-letter currency code (ISO 4217) to use for all monetary values.
cost object Updated delivery cost.
View JSON Schema on GitHub

JSON Schema

public-api-update-delivery-request-callback-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UpdateDeliveryRequestCallbackRequest",
  "description": "Updated Delivery information.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-update-delivery-request-callback-request-schema.json",
  "type": "object",
  "properties": {
    "currencyCode": {
      "type": "string",
      "nullable": true,
      "minLength": 3,
      "maxLength": 3,
      "description": "The 3-letter currency code (ISO 4217) to use for all monetary values.",
      "example": "EUR"
    },
    "cost": {
      "nullable": true,
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-delivery-cost-schema.json",
      "description": "Updated delivery cost."
    }
  }
}