Flipdish · JSON Structure

Menus Menu Section Structure

Menu section

Type: object Properties: 11
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

MenuSection is a JSON Structure definition published by Flipdish, describing 11 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

MenuSectionId MenuItems MenuSectionAvailability PublicId ImageName Name Description DisplayOrder IsAvailable IsHiddenFromCustomers ImageUrl

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/menus-menu-section-structure.json",
  "name": "MenuSection",
  "description": "Menu section",
  "type": "object",
  "properties": {
    "MenuSectionId": {
      "description": "Menu section identifier",
      "type": "int32",
      "example": 500123
    },
    "MenuItems": {
      "description": "Menu items",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MenuSectionItem"
      },
      "example": []
    },
    "MenuSectionAvailability": {
      "$ref": "#/components/schemas/MenuSectionAvailability"
    },
    "PublicId": {
      "description": "Permanent reference to the item.",
      "type": "uuid",
      "example": "00000000-0000-0000-0000-000000000000"
    },
    "ImageName": {
      "description": "Image Name",
      "type": "string",
      "example": "Example Name"
    },
    "Name": {
      "description": "Name",
      "maxLength": 4000,
      "minLength": 0,
      "type": "string",
      "example": "Example Name"
    },
    "Description": {
      "description": "Description",
      "maxLength": 4000,
      "minLength": 0,
      "type": "string",
      "example": "string"
    },
    "DisplayOrder": {
      "description": "Display order",
      "type": "int32",
      "example": 1
    },
    "IsAvailable": {
      "description": "Is available",
      "type": "boolean",
      "example": true
    },
    "IsHiddenFromCustomers": {
      "description": "Is hidden from customer. Perhaps when the item is out of stock.",
      "type": "boolean",
      "example": true
    },
    "ImageUrl": {
      "description": "Image url",
      "type": "string",
      "example": "https://api.flipdish.co/example"
    }
  }
}