Flipdish · Schema

UserDeliveryLocationAdmin

Delivery location with identifiers for admin user management.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
DeliveryLocationId integer DeliveryLocationId.
Building string Building.
Street string Street.
Town string Town.
PostCode string PostCode.
DeliveryInstructions string DeliveryInstructions.
AutoSelectThisLocation boolean AutoSelectThisLocation.
IsDisplayed boolean IsDisplayed.
IsConfirmed boolean IsConfirmed.
Coordinates object
View JSON Schema on GitHub

JSON Schema

customers-user-delivery-location-admin-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-user-delivery-location-admin-schema.json",
  "title": "UserDeliveryLocationAdmin",
  "description": "Delivery location with identifiers for admin user management.",
  "type": "object",
  "properties": {
    "DeliveryLocationId": {
      "format": "int32",
      "description": "DeliveryLocationId.",
      "type": "integer",
      "example": 500123
    },
    "Building": {
      "description": "Building.",
      "type": "string",
      "example": "string"
    },
    "Street": {
      "description": "Street.",
      "type": "string",
      "example": "string"
    },
    "Town": {
      "description": "Town.",
      "type": "string",
      "example": "string"
    },
    "PostCode": {
      "description": "PostCode.",
      "type": "string",
      "example": "string"
    },
    "DeliveryInstructions": {
      "description": "DeliveryInstructions.",
      "type": "string",
      "example": "string"
    },
    "AutoSelectThisLocation": {
      "description": "AutoSelectThisLocation.",
      "type": "boolean",
      "example": true
    },
    "IsDisplayed": {
      "description": "IsDisplayed.",
      "type": "boolean",
      "example": true
    },
    "IsConfirmed": {
      "description": "IsConfirmed.",
      "type": "boolean",
      "nullable": true,
      "example": true
    },
    "Coordinates": {
      "$ref": "#/components/schemas/Coordinates"
    }
  }
}