Otter · Schema

DeliveryCost

Delivery cost details.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
baseCost number Base delivery cost value.
extraCost number Extra delivery cost value.
View JSON Schema on GitHub

JSON Schema

public-api-delivery-cost-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DeliveryCost",
  "description": "Delivery cost details.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-delivery-cost-schema.json",
  "type": "object",
  "properties": {
    "baseCost": {
      "type": "number",
      "format": "double",
      "description": "Base delivery cost value.",
      "example": 4.99
    },
    "extraCost": {
      "type": "number",
      "format": "double",
      "description": "Extra delivery cost value.",
      "example": 0.99
    }
  }
}