Flipdish · Schema
StoreBase
Store Base
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| PhoneNumber | string | Phone number |
| AlwaysAppearOpen | boolean | True if the store always appears open |
| PreOrderEnabled | boolean | True if the store accepts pre-orders |
| TakeOutEnabled | boolean | True if the store accepts take-out orders |
| TableServiceEnabled | boolean | True if the store has table service |
| DineInEnabled | boolean | True if the store accepts dine-in orders |
| AllowPreOrdersAndTableService | boolean | True if both pre-orders and talbe service can be enabled |
| PickupEnabled | boolean | True if the store accepts pickup orders |
| DeliveryEnabled | boolean | True if the store accepts delivery orders |
| CardOrderDeliveryEnabled | boolean | True if the store accepts card payment for delivery orders |
| CashOrdersDeliveryEnabled | boolean | True if the store accepts cash payment for delivery orders |
| CardOrdersPickupEnabled | boolean | True if the store accepts card payment for pickup orders |
| CashOrdersPickupEnabled | boolean | True if the store accepts cash payment for pickup orders |
| TipsEnabled | boolean | True if the store accepts tips |
| AutomaticallyAcceptOrders | boolean | True if the stores orders are automatically accepted in Flipdish |
| OpenForDelivery | boolean | True if the store is open for delivery |
| OpenForPickup | boolean | True if the store is open for pickup |
| MinimumPickupOrderAmount | number | Minimum pickup order amount |
| RequireCustomerNameForPickup | boolean | True if customer name required for pickup orders |
| GdprCustomerPhoneNumbers | boolean | Mask your customers phone numbers printed on receipts and reduce the amout of personally identifiable customer information that is exposed. |
| RequireCustomerNameForDelivery | boolean | True if customer name required for delivery orders |
| AllowChefNotes | boolean | True if the customer is allowed enter custom notes with their orders |
| EtaInPickupConfirmationSmsEnabled | boolean | True if order confirmation sms includes estimated time when order will be ready for collection |
| EtaInDeliveryConfirmationSmsEnabled | boolean | True if order confirmation sms includes estimated time when order will delivered |
| IsArchived | boolean | Is the Store Archived |
| IsPublished | boolean | Is the Store Published |
| Name | string | Name |
| EmailAddress | string | Email address (visible to customers) |
| StaffLanguage | string | Staff Language (used for communication with the staff) Emails, Printouts etc |
| SalesChannelTypes | array | Sales Channel Types |
| InheritanceConfigTypes | array | Inheritance Config Types |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/stores-store-base-schema.json",
"title": "StoreBase",
"description": "Store Base",
"type": "object",
"properties": {
"PhoneNumber": {
"description": "Phone number",
"type": "string",
"example": "+353000000000"
},
"AlwaysAppearOpen": {
"description": "True if the store always appears open",
"type": "boolean",
"example": true
},
"PreOrderEnabled": {
"description": "True if the store accepts pre-orders",
"type": "boolean",
"example": true
},
"TakeOutEnabled": {
"description": "True if the store accepts take-out orders",
"type": "boolean",
"example": true
},
"TableServiceEnabled": {
"description": "True if the store has table service",
"type": "boolean",
"example": true
},
"DineInEnabled": {
"description": "True if the store accepts dine-in orders",
"type": "boolean",
"example": true
},
"AllowPreOrdersAndTableService": {
"description": "True if both pre-orders and talbe service can be enabled",
"type": "boolean",
"example": true
},
"PickupEnabled": {
"description": "True if the store accepts pickup orders",
"type": "boolean",
"example": true
},
"DeliveryEnabled": {
"description": "True if the store accepts delivery orders",
"type": "boolean",
"example": true
},
"CardOrderDeliveryEnabled": {
"description": "True if the store accepts card payment for delivery orders",
"type": "boolean",
"example": true
},
"CashOrdersDeliveryEnabled": {
"description": "True if the store accepts cash payment for delivery orders",
"type": "boolean",
"example": true
},
"CardOrdersPickupEnabled": {
"description": "True if the store accepts card payment for pickup orders",
"type": "boolean",
"example": true
},
"CashOrdersPickupEnabled": {
"description": "True if the store accepts cash payment for pickup orders",
"type": "boolean",
"example": true
},
"TipsEnabled": {
"description": "True if the store accepts tips",
"type": "boolean",
"example": true
},
"AutomaticallyAcceptOrders": {
"description": "True if the stores orders are automatically accepted in Flipdish",
"type": "boolean",
"example": true
},
"OpenForDelivery": {
"description": "True if the store is open for delivery",
"type": "boolean",
"example": true
},
"OpenForPickup": {
"description": "True if the store is open for pickup",
"type": "boolean",
"example": true
},
"MinimumPickupOrderAmount": {
"format": "double",
"description": "Minimum pickup order amount",
"type": "number",
"example": 12.5
},
"RequireCustomerNameForPickup": {
"description": "True if customer name required for pickup orders",
"type": "boolean",
"example": true
},
"GdprCustomerPhoneNumbers": {
"description": "Mask your customers phone numbers printed on receipts and reduce the amout of personally identifiable customer information that is exposed.",
"type": "boolean",
"example": true
},
"RequireCustomerNameForDelivery": {
"description": "True if customer name required for delivery orders",
"type": "boolean",
"example": true
},
"AllowChefNotes": {
"description": "True if the customer is allowed enter custom notes with their orders",
"type": "boolean",
"example": true
},
"EtaInPickupConfirmationSmsEnabled": {
"description": "True if order confirmation sms includes estimated time when order will be ready for collection",
"type": "boolean",
"example": true
},
"EtaInDeliveryConfirmationSmsEnabled": {
"description": "True if order confirmation sms includes estimated time when order will delivered",
"type": "boolean",
"example": true
},
"IsArchived": {
"description": "Is the Store Archived",
"type": "boolean",
"example": true
},
"IsPublished": {
"description": "Is the Store Published",
"type": "boolean",
"example": true
},
"Name": {
"description": "Name",
"type": "string",
"example": "Example Name"
},
"EmailAddress": {
"description": "Email address (visible to customers)",
"maxLength": 100,
"minLength": 0,
"type": "string",
"example": "[email protected]"
},
"StaffLanguage": {
"description": "Staff Language (used for communication with the staff)\r\nEmails, Printouts etc",
"type": "string",
"example": "string"
},
"SalesChannelTypes": {
"description": "Sales Channel Types",
"type": "array",
"items": {
"enum": [
"Web",
"App",
"Kiosk",
"Pos",
"None"
],
"type": "string"
},
"example": [
"Web"
]
},
"InheritanceConfigTypes": {
"description": "Inheritance Config Types",
"type": "array",
"items": {
"enum": [
"CollectionSettings"
],
"type": "string"
},
"example": [
"CollectionSettings"
]
}
}
}