Flipdish · Schema
IndexPageBase
Base of Index Page
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| AboutSectionEnabled | boolean | About section enabled |
| AboutSectionTitle | string | About section title |
| AboutSectionSubtitle | string | About section sub-title |
| AboutSectionLeftTitle | string | About section title left |
| AboutSectionLeftBody | string | About section text left |
| AboutSectionRightTitle | string | About section title right |
| AboutSectionRightBody | string | About section text right |
| OpeningHoursEnabled | boolean | Opening hours section Enabled |
| MenuPreviewEnabled | boolean | Menu Preview section Enabled |
| GalleryEnabled | boolean | Gallery section enabled |
| TestimonialsEnabled | boolean | Testimonials section Enabled |
| ContactFormEnabled | boolean | Contact Form section Enabled |
| ContactFormEmail | string | Contact Form Email |
| MapEnabled | boolean | Map section Enabled |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/apps-index-page-base-schema.json",
"title": "IndexPageBase",
"description": "Base of Index Page",
"type": "object",
"properties": {
"AboutSectionEnabled": {
"description": "About section enabled",
"type": "boolean",
"example": true
},
"AboutSectionTitle": {
"description": "About section title",
"type": "string",
"example": "string"
},
"AboutSectionSubtitle": {
"description": "About section sub-title",
"type": "string",
"example": "string"
},
"AboutSectionLeftTitle": {
"description": "About section title left",
"type": "string",
"example": "string"
},
"AboutSectionLeftBody": {
"description": "About section text left",
"type": "string",
"example": "string"
},
"AboutSectionRightTitle": {
"description": "About section title right",
"type": "string",
"example": "string"
},
"AboutSectionRightBody": {
"description": "About section text right",
"type": "string",
"example": "string"
},
"OpeningHoursEnabled": {
"description": "Opening hours section Enabled",
"type": "boolean",
"example": true
},
"MenuPreviewEnabled": {
"description": "Menu Preview section Enabled",
"type": "boolean",
"example": true
},
"GalleryEnabled": {
"description": "Gallery section enabled",
"type": "boolean",
"example": true
},
"TestimonialsEnabled": {
"description": "Testimonials section Enabled",
"type": "boolean",
"example": true
},
"ContactFormEnabled": {
"description": "Contact Form section Enabled",
"type": "boolean",
"example": true
},
"ContactFormEmail": {
"description": "Contact Form Email",
"type": "string",
"example": "[email protected]"
},
"MapEnabled": {
"description": "Map section Enabled",
"type": "boolean",
"example": true
}
}
}