Flipdish · Schema
DeliveryLocation
Delivery location
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| Coordinates | object | |
| Building | string | Building |
| Street | string | Street |
| Town | string | Town |
| PostCode | string | Post code |
| DeliveryInstructions | string | Delivery instructions |
| PrettyAddressString | string | Formatted, pretty address string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-delivery-location-schema.json",
"title": "DeliveryLocation",
"description": "Delivery location",
"type": "object",
"properties": {
"Coordinates": {
"$ref": "#/components/schemas/Coordinates"
},
"Building": {
"description": "Building",
"type": "string",
"example": "string"
},
"Street": {
"description": "Street",
"type": "string",
"example": "string"
},
"Town": {
"description": "Town",
"type": "string",
"example": "string"
},
"PostCode": {
"description": "Post code",
"type": "string",
"example": "string"
},
"DeliveryInstructions": {
"description": "Delivery instructions",
"type": "string",
"example": "string"
},
"PrettyAddressString": {
"description": "Formatted, pretty address string",
"type": "string",
"example": "string"
}
}
}