Flipdish · Schema
MenuZone
MenuZone.
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| MenuZoneId | integer | MenuZoneId. |
| MenuId | integer | MenuId. |
| Name | string | Name. |
| Description | string | Description. |
| ImageName | string | ImageName. |
| DisplayOrder | integer | DisplayOrder. |
| ImageUrl | string | ImageUrl. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/menus-menu-zone-schema.json",
"title": "MenuZone",
"description": "MenuZone.",
"type": "object",
"properties": {
"MenuZoneId": {
"format": "int32",
"description": "MenuZoneId.",
"type": "integer",
"example": 500123
},
"MenuId": {
"format": "int32",
"description": "MenuId.",
"type": "integer",
"example": 500123
},
"Name": {
"description": "Name.",
"type": "string",
"example": "Example Name"
},
"Description": {
"description": "Description.",
"type": "string",
"example": "string"
},
"ImageName": {
"description": "ImageName.",
"type": "string",
"example": "Example Name"
},
"DisplayOrder": {
"format": "int32",
"description": "DisplayOrder.",
"type": "integer",
"example": 1
},
"ImageUrl": {
"description": "ImageUrl.",
"type": "string",
"example": "https://api.flipdish.co/example"
}
}
}