Flipdish · Schema
MenuBulkEditEvent
Menu bulk event
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| EventName | string | The event name |
| MenuName | string | Menu Name |
| Description | string | Description |
| Item | string | Product |
| InstanceCount | integer | Quantity of product |
| IsAvailable | boolean | Visibility of the item |
| User | object | |
| MenuId | integer | The menu Id |
| FlipdishEventId | string | The identitfier of the event |
| CreateTime | string | The time of creation of the event |
| Position | integer | Position |
| AppId | string | App id |
| OrgId | string | Org id |
| IpAddress | string | Ip Address |
| ActivityId | string | Activity Id |
| ActivityType | string | Activity Type |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/platform-menu-bulk-edit-event-schema.json",
"title": "MenuBulkEditEvent",
"description": "Menu bulk event",
"type": "object",
"properties": {
"EventName": {
"description": "The event name",
"type": "string",
"example": "Example Name"
},
"MenuName": {
"description": "Menu Name",
"type": "string",
"example": "Example Name"
},
"Description": {
"description": "Description",
"type": "string",
"example": "string"
},
"Item": {
"description": "Product",
"type": "string",
"example": "string"
},
"InstanceCount": {
"format": "int32",
"description": "Quantity of product",
"type": "integer",
"example": 3
},
"IsAvailable": {
"description": "Visibility of the item",
"type": "boolean",
"example": true
},
"User": {
"$ref": "#/components/schemas/UserEventInfo"
},
"MenuId": {
"format": "int32",
"description": "The menu Id",
"type": "integer",
"example": 500123
},
"FlipdishEventId": {
"format": "uuid",
"description": "The identitfier of the event",
"type": "string",
"example": "00000000-0000-0000-0000-000000000000"
},
"CreateTime": {
"format": "date-time",
"description": "The time of creation of the event",
"type": "string",
"example": "2026-06-02T12:00:00Z"
},
"Position": {
"format": "int32",
"description": "Position",
"type": "integer",
"example": 1
},
"AppId": {
"description": "App id",
"type": "string",
"example": "500123"
},
"OrgId": {
"description": "Org id",
"type": "string",
"example": "500123"
},
"IpAddress": {
"description": "Ip Address",
"type": "string",
"example": "string"
},
"ActivityId": {
"description": "Activity Id",
"type": "string",
"example": "500123"
},
"ActivityType": {
"description": "Activity Type",
"type": "string",
"example": "string"
}
}
}