Flipdish · JSON Structure

Stores Delivery Zone Structure

Delivery Zone

Type: object Properties: 6
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

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

Properties

Id FeeChargedToStore DeliveryFee MinimumDeliveryOrderAmount WellKnownText IsEnabled

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/flipdish/refs/heads/main/json-structure/stores-delivery-zone-structure.json",
  "name": "DeliveryZone",
  "description": "Delivery Zone",
  "type": "object",
  "properties": {
    "Id": {
      "description": "Delivery Fee Area Id",
      "type": "int32",
      "example": 500123
    },
    "FeeChargedToStore": {
      "description": "Delivery Fee charged to store",
      "type": "double",
      "nullable": true,
      "example": 12.5
    },
    "DeliveryFee": {
      "description": "Delivery fee (will not be set below 0)",
      "type": "double",
      "example": 12.5
    },
    "MinimumDeliveryOrderAmount": {
      "description": "Minimum delivery order amount (will not be set below 0)",
      "type": "double",
      "example": 12.5
    },
    "WellKnownText": {
      "description": "Spatial data in Well Known Text format\r\nWe also support CIRCLE((0 0, 200)) - (centerLong centerLat, radius in m)",
      "type": "string",
      "example": "string"
    },
    "IsEnabled": {
      "description": "Is delivery zone enabled",
      "type": "boolean",
      "example": true
    }
  }
}