API Reference

The KitchenHub Menu API simplifies menu management for our partners. This tool allows partners to efficiently manage menus across multiple providers simultaneously. Here's a clear overview of how it works.

What is a Menu?

Partners can upload their menus to KitchenHub using the Menu API, ensuring adherence to the KitchenHub Menu Model structure. This universal format can be reused with any provider supported by KitchenHub. Menus are associated with specific stores, and any connected provider (that supports menu management) automatically syncs with the menu when updates are made.

Key Points:

  • Menus are bound to specific stores.
  • KitchenHub's menu serves as the "source of truth" for a store, and all integrated providers rely on this central menu. Changes made to the KitchenHub menu are automatically propagated to all connected providers.
  • You always interact with a menu object, even if you need to update a single item you have to update the whole menu and upload it to Kitchenhub.

How to Work with Menus

Preconditions

Before you start working with a menu you need to set up a store. You can upload your menu before connecting providers or after. It depends on your requests.

Steps of menu management

  1. Optional. You may want to download one of the menus from existing connected providers. And use it as a base version of the menu. In this case, you can use our pull provider menu method.
  2. Menu upload. To do this use our PUT menu method.
  3. Optional. After uploading, check if the menu has been updated on the provider side. Use get menu upload status.
  4. Subsequent menu updates. Also, use PUT menu method.

Menu to order mapping

Some of our partners expect that the orders that will come to them through Kitchenhub will be centered on their menus, and they need to receive orders with the same item IDs as in the menu.

It's called menu mapping. And this option works automatically as soon as your menu is uploaded to the provider.

It's important when you are creating or updating a menu, you need to pass the ID from your system. In a menu object, each nested object has a partner_id. This is where you need to put the values from your system.

Nested Modifiers

Option model has a partner_modifiers field that allows you to place nested modifiers. Nested modifier objects have the same field as basic Modifier.

To add a nested modifier, you first need to create an object as a base Modifier, then you can put it in the Option.

Maximum nesting level is 3. This means that you can contain a chain of modifiers into an item maximum with a depth of 3. You can see an example of an item with a maximum nesting level in the Menu Example section.

Not all providers support nested modifiers. List of providers that support nested modifiers: DoorDash, UberEats, GrubHub. If you try to upload a menu with nested modifiers in other providers, they will be nested in the item.

Price Customization

The Item model includes an optional prices_customization field, which allows you to set custom item prices based on different providers.
Steps to Add a Nested Modifier:

  1. Start by creating an item and specifying its base price.
  2. Set Up Price Customization: Use the prices_customization field to map each provider_id to its respective prices.
    price: The price that includes delivery.
    original_price: The price without delivery (e.g., for pickup). ( Note: the original price available only for doordash_pos provider)
     For further details, please refer to the item description.

Menu Model

Top-level of the menu object.

PropertyTypeNullableDescription
idstringNoThe ID of the menu on the Kitchenhub side
store_idstringNoThe ID of the store that the menu is connected
menuObjectNoGeneral info about the menu
categoriesArray of objectsNoMenu categories and their properties
itemsArray of objectsNoMenu items and their properties
modifiersArray of objectsNoModifier questions for items
optionsArray of objectsNoOptions for modifiers
availabilitiesArray of objectsNoSchedules of availabilities for categories,
items, modifiers, and options

Menu object properties

PropertyTypeNullableDescription
partner_idstringNoThe ID of the menu on the partner side
namestringNoMenu name.
descriptionstringYesMenu description.
media_urlstringYesURL of the image of the menu.
partner_categoriesArray of stringsYesA list of category IDs on the partner side belongs to this menu. Categories will be displayed in the same order they are listed here.

Category object

PropertyTypeNullableDescription
partner_idstringNoThe ID of the category on the partner side.
titlestringNoCategory name.
descriptionstringYesCategory description.
is_deactivatedbooleanYesIf it's true then the whole category will be disabled for ordering.
deactivation_start_datedate-timeYesDate since the category is deactivated (UTC time in format year-month-dayThour:minute:second.msecZ).
You can use it for scheduled deactivation.
deactivation_end_datedate-timeYesDate till the category is deactivated (UTC time in format year-month-dayThour:minute:second.msecZ)
You can use it for scheduled enabling of the category.
partner_itemsArray of stringsYesA list of item IDs on the partner side belongs to this category. Items will be displayed in the same order they are listed here.
partner_availabilityStringYesAvailability schedule ID on the partner side. Can be used to hide the category for specific times of the day, or days of the week. Widely used to build launch or other special menus.

Item object

PropertyTypeNullableDescription
partner_idstringNoThe ID of the item on the partner side.
namestringNoItem name.
descriptionstringYesItem description.
internal_notesstringYesIs used to display additional information for items (for example preparation instructions) on the order level when they are ingested into a restaurant. Isn't visible to end customers.
is_deactivatedbooleanYesIf it's true then the item will be disabled for ordering.
deactivation_start_datedate-timeYesDate since the item is deactivated (UTC time in format year-month-dayThour:minute:second.msecZ).
You can use it for scheduled deactivation.
deactivation_end_datedate-timeYesDate till the item is deactivated (UTC time in format year-month-dayThour:minute:second.msecZ)
You can use it for scheduled enabling of the item.
media_urlstringYesThe image you have selected will be transformed to fit provider requirements.
We recommend to keep at least 1024 px each side.
If provider expects specific aspect-ratio, white borders can be added to fit this requirement.
pricedecimalNoPrice of the item. This field should be a positive number
original_pricedecimalYesThe cost of the item for pickup. This price does not include delivery charges. This field should be a positive number.
tax_ratedecimalYesExtra tax which may be added to some items on top of regular sales tax. Must be between 0 and 1
min_amountintegerYesSet the rule of the minimum quantity of the item customers have to order. If null then there are no restrictions
max_amountintegerYesSet the rule of the maximum quantity of the item customers can order. If null then there are no restrictions
partner_modifiersArray of stringsNoA list of modifier IDs on the partner side belongs to this Item. Modifiers will be displayed in the same order they are listed here.
partner_availabilityStringYesAvailability schedule ID on the partner side. Can be used to hide the item for specific times of the day, or days of the week. Widely used to build launch or other special menus.
prices_customizationDict[str, CustomPriceSchema]NoCustom price information for selected providers.

This field can be skipped, but cannot contain a null value.

Contains mapping of provider_id (str) to prices information (CustomPriceSchema).
Supports providers with a full menu support protocol. Use the provider_id from the Provider Integrations table here, ensuring the "Menu API" column indicates full support.

Note that the original_price field is currently supported only by Doordash provider (Provider ID: doordash_pos).

Usage Example:

[{ "doordash_pos": { "price": 10, "original_price": 8 } }]

CustomPriceSchema explained further

CustomPriceSchema

PropertyTypeNullableDescription
pricedecimalNoThe price includes delivery charges. This is a required field and must be a positive number.
original_pricedecimalYesThe price for pickup. This price does not include delivery charges. This field is used only by DoorDash and should be a positive number. This field is optional.

This field is nullable and can be 0. The processing of this case depends on the provider.

Note that the original_price field is currently supported only by Doordash provider (Provider ID: doordash_pos).

Modifier object

PropertyTypeNullableDescription
partner_idstringNoThe ID of the modifier on the partner side.
namestringNoModifier name.
typestringNoCan be size or variation.
If it is size then only one option can be chosen, and it means that min_options = 1 max_options = 1has to be set.
If it's variation you can set min_options andmax_options as you need.
is_requiredbooleanYesIf it's true then an end customer has to choose at least one option from the list of options connected to this modifier.
min_optionsintegerNoSet the rule of the minimum quantity of the options customers have to choose. Work together with max_options
max_optionsintegerNoSet the rule of the maximum quantity of the options customers have to choose.
Examples of how it should be used together with min_options:

- Choose 1 from many: min_options = 1 max_options = 1
- Choose any up to 10 : min_options = 1 max_options = 10
- Choose 3 options: min_options = 3 max_options = 3
partner_optionsArray of stringsNoA list of options IDs on the partner side belongs to this modifier. Options will be displayed in the same order they are listed here.
default_optionsArray of stringsYesSet which options from the list will be chosen by default for customers. It can be one or multiple options. Check if it fits right with the max_options parameter.

Option object

PropertyTypeNullableDescription
partner_idstringNoThe ID of the option on the partner side.
namestringNoOption name.
descriptionstringYesItem description.
is_deactivatedbooleanYesIf it's true then the item will be disabled for ordering.
deactivation_start_datedate-timeYesDate since the option is deactivated (UTC time in format year-month-dayThour:minute:second.msecZ).
You can use it for scheduled deactivation.
deactivation_end_datedate-timeYesDate till the option is deactivated (UTC time in format year-month-dayThour:minute:second.msecZ)
You can use it for scheduled enabling of the option.
pricedecimalYesPrice of the option, if null then the option is free.
original_pricedecimalYesThe cost of this option before discounts and promotions. Can be used as a reference price for statistics. Isn't visible to end customers.
tax_ratedecimalYesThe extra tax may be added to some options despite regular sales tax. Must be between 0 and 1.
partner_modifiersArray of stringsYesExtra modifiers can be added to the option. You can add to an item maximum 3-level of nested modifiers.

Availability object

PropertyTypeNullableDescription
partner_idstringNoThe ID of the category on the partner side.
rulesarray of objectsNoSee bellow

Rule object

PropertyTypeNullableDescription
days_of_weekarray of stringsNoList of days of the week (MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY)
start_timestringNoTime after which item is available in 24-hour HH:MM:SS.MS format
end_timestringNoTime after which item is not available in 24-hour HH:MM:SS.MS format

Menu example

{
	"menu": {
    	"partner_id": "Menu",
        	"name": "Menu",
            	"description": null,
                	"media_url": null,
                    	"partner_categories": [
                        	"Paninis",
                        	"Breakfast_Omelettes",
                        	"Flagels",
                        	"From_the_Bakery",
                        	"Fruit_Smoothie_Secti",
                        	"Beverages"
                    	]
	},
	"categories": [
{
      "partner_id": "b914a949-50fb-4669-a0ff-1115f83bd1c2",
      "title": "Dinner Combo",
      "description": null,
      "is_deactivated": false,
      "deactivation_start_date": null,
      "deactivation_end_date": null,
      "media_url": null,
      "partner_items": [
   	 "d2024709-5c8b-44d2-b228-639704ca9df7"
      ],
      "partner_availability": null
    },
    	{
        	"partner_id": "Fruit_Smoothie_Secti",
        	"title": "Fruit Smoothie Section",
        	"description": null,
        	"is_deactivated": false,
        	"deactivation_start_date": null,
        	"deactivation_end_date": null,
        	"partner_items": [
            	"Berry_Blast",
            	"Summer_Love",
            	"Banana_split",
            	"The_East_Villager",
            	"The_Stuy_Towner",
            	"Create_Your_Own"
        	],
        	"partner_availability": null
    	},
    	{
        	"partner_id": "Flagels",
        	"title": "Flat Bagels",
        	"description": null,
        	"is_deactivated": false,
        	"deactivation_start_date": null,
        	"deactivation_end_date": null,
        	"partner_items": [
            	"Flagels_49908",
            	"Dozen_Fagels"
        	],
        	"partner_availability": null
    	},
    	{
        	"partner_id": "Breakfast_Omelettes",
        	"title": "Breakfast Omelettes",
        	"description": null,
        	"is_deactivated": true,
        	"deactivation_start_date": null,
        	"deactivation_end_date": null,
        	"partner_items": [
            	"Eggs_and_Vegetable_O",
            	"Leo_Omelette",
            	"Greek_Omelette",
            	"Western_Omelette"
        	],
        	"partner_availability": null
    	},
    	{
        	"partner_id": "From_the_Bakery",
        	"title": "From the Bakery",
        	"description": null,
        	"is_deactivated": false,
        	"deactivation_start_date": null,
        	"deactivation_end_date": null,
        	"partner_items": [
            	"Muffin",
            	"Raspberry_Cigar",
            	"Cinnamon_Bun_Danish",
            	"Linzer_Tart",
            	"Croissant",
            	"Turnover",
            	"Chocolate_Chip_Brown"
        	],
        	"partner_availability": null
    	},
    	{
        	"partner_id": "Paninis",
        	"title": "Paninis",
        	"description": null,
        	"is_deactivated": false,
        	"deactivation_start_date": null,
        	"deactivation_end_date": null,
        	"partner_items": [
            	"The_Dylan_Panni",
            	"The_Michelle_Panini",
            	"The_Danny_Boy_Panini"
        	],
        	"partner_availability": null
    	},
    	{
        	"partner_id": "Beverages",
        	"title": "Beverages",
        	"description": null,
        	"is_deactivated": false,
        	"deactivation_start_date": null,
        	"deactivation_end_date": null,
        	"partner_items": [
            	"Can_of_Soda",
            	"Bottled_Soda_(20_oz)",
            	"Tropicana_Juice",
            	"Quart_of_Tropicana_J"
        	],
        	"partner_availability": null
    	}
	],
    	"items": [
   	{
      "partner_id": "d2024709-5c8b-44d2-b228-639704ca9df7",
      "name": "Vegetarian Combo",
      "description": "Vegetarian Combo",
      "internal_notes": "",
      "is_deactivated": false,
      "deactivation_start_date": null,
      "deactivation_end_date": null,
      "media_url": null,
      "price": 20.0,
      "original_price": 0.0,
      "min_amount": 1,
      "max_amount": 3,
      "partner_availability": null,
      "partner_modifiers": [
   	 "60217cba-b454-4999-9a6f-fb41ef1cbb23",
   	 "b5b9d68b-b215-44b4-8a27-0d60ff5bf0f5"
      ],
      "tax_rate": 0.0
    },
        	{
            	"partner_id": "Raspberry_Cigar",
            	"name": "Raspberry Cigar",
            	"description": "A  flaky pastry filled with raspberry preserves that creates a deliciously sweet and tangy dessert. It's the perfect treat to enjoy with a cup of coffee or tea.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 6.35,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 3,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Chocolate_Chip_Brown",
            	"name": "Chocolate Chip Brownie",
            	"description": "Indulge in our decadent Chocolate Chip Brownie, made with rich cocoa and loaded with delicious chocolate chips for the ultimate chocolatey treat. Perfectly baked to perfection, this brownie is soft, chewy, and oh-so-satisfying!",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 7.0,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 3,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "The_Michelle_Panini",
            	"name": "The Michelle Panini",
            	"description": "Indulge in The Michelle Panini, a culinary masterpiece that showcases a delightful combination of premium ingredients. From the perfectly grilled bread to the melty cheeses, savory meats, and vibrant flavors of fresh ingredients, each bite of this delectable creation is a true delight that will transport your taste buds to a realm of pure satisfaction. ",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 19.95,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 3,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Bottled_Soda_(20_oz)",
            	"name": "Bottled Soda (20 oz)",
            	"description": "Indulge in the ultimate thirst-quenching experience with our 20 oz Bottled Soda, where a generous serving of your favorite carbonated beverage awaits. Savor every effervescent sip as it tantalizes your taste buds and provides a refreshing escape from the everyday.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 5.0,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 3,
            	"partner_availability": null,
            	"partner_modifiers": [
                	"Choose_your_drink"
            	],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Western_Omelette",
            	"name": "Western Omelette",
            	"description": "The Western Omelette is made with three eggs and filled with diced ham, peppers, onions, and served with home fries and a buttered bagel; it is a classic breakfast dish with a satisfying blend of flavors and textures.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 18.6,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 2,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Linzer_Tart",
            	"name": "Linzer Tart",
            	"description": "The Linzer Tart is a traditional Austrian pastry made with a nutty shortbread crust and filled with raspberry preserves, making for a sweet and delicious treat. It's perfect for anyone with a sweet tooth looking for a classic dessert option.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 6.35,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 3,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Muffin",
            	"name": "Muffin",
            	"description": "A freshly baked and moist muffin, bursting with flavor and perfect for a quick breakfast or snack.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 6.35,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 3,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Berry_Blast",
            	"name": "Berry Blast",
            	"description": "Berry Blast is a delicious and refreshing smoothie made with a blend of mixed berries, providing a burst of fruity flavor and healthy nutrients in every sip.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 13.3,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 3,
            	"partner_availability": null,
            	"partner_modifiers": [
                	"Choose_your_quantity"
            	],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "The_Stuy_Towner",
            	"name": "The Stuy Towner",
            	"description": "The Stuy Towner smoothie is a delicious blend of creamy peanut butter, ripe banana, and decadent chocolate syrup, making for a satisfying and indulgent treat. Perfect for a quick and tasty breakfast on the go or a midday pick-me-up.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 13.3,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 3,
            	"partner_availability": null,
            	"partner_modifiers": [
                	"Choose_your_quantity"
            	],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Summer_Love",
            	"name": "Summer Love",
            	"description": " is a refreshing blend of sweet strawberries, tropical pineapple, and juicy mango, perfect for a summer day. This drink is sure to transport your taste buds to a tropical paradise with every sip.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 13.3,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 3,
            	"partner_availability": null,
            	"partner_modifiers": [
                	"Choose_your_quantity"
            	],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Tropicana_Juice",
            	"name": "Tropicana Juice",
            	"description": "Tropicana Juice is a refreshing and flavorful beverage made from high-quality fruits that provides essential vitamins and nutrients.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 5.0,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 3,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Banana_split",
            	"name": "Banana split",
            	"description": "The Banana Split smoothie is a delightful blend of sweet strawberries, ripe bananas, and rich chocolate syrup, creating a perfectly balanced and indulgent treat.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 13.3,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 3,
            	"partner_availability": null,
            	"partner_modifiers": [
                	"Choose_your_quantity"
            	],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Leo_Omelette",
            	"name": "Leo Omelette ",
            	"description": "The Leo Omelette is a savory breakfast dish made with lox, eggs, and onions, served with home fries and a bagel or bialy. It's a classic combination that is both satisfying and delicious.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 18.6,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Create_Your_Own",
            	"name": "Create Your Own",
            	"description": "The Create Your Own smoothie allows you to select three toppings of your choice to create a personalized and delicious blend of flavors.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 13.59,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Turnover",
            	"name": "Turnover",
            	"description": "This delectable pastry is a sweet treat that combines soft and sweet apples with a flaky pastry, baked until golden and finished off with a delicious glaze.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 6.35,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Greek_Omelette",
            	"name": "Greek Omelette",
            	"description": "The Greek Omelette is a breakfast dish made with 3 eggs, feta cheese, and caramelized onions, served with home fries and a buttered bagel or bialy, and may be a savory option for those looking to start their day with a hearty meal.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 18.6,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Dozen_Fagels",
            	"name": "Dozen Flat Bagels",
            	"description": "A dozen of our deliciously chewy flat bagels, perfect for sharing with friends and family for breakfast or brunch. Choose from a variety of flavors including plain, sesame, poppy seed, and everything.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 48.0,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Eggs_and_Vegetable_O",
            	"name": "Vegetable Omelette ",
            	"description": "This dish features a fluffy three-egg omelette filled with nutritious vegetables, accompanied by crispy home fries and a choice of bagel or bialy.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 17.3,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Croissant",
            	"name": "Croissant",
            	"description": "A classic pastry that is perfect for breakfast or a snack, the buttery and flaky croissant can be enjoyed on its own or paired with your choice of butter or jam for added flavor.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 6.35,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Quart_of_Tropicana_J",
            	"name": "Quart of Tropicana Juice",
            	"description": "A refreshing and deliciously healthy way to quench your thirst, a quart of Tropicana juice is perfect for sharing with family and friends. Made from 100% pure and natural fruits, it's a great source of vitamins and minerals to help you stay energized throughout the day.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 8.65,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Flagels_49908",
            	"name": "Flat Bagels",
            	"description": "Flat bagels are an alternative to the traditional bagel that is thinner and wider with a smaller hole, making it ideal for toasting and sandwich making.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 4.0,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "The_Danny_Boy_Panini",
            	"name": "The Danny Boy Panini",
            	"description": "A culinary masterpiece crafted with care. This delectable creation features a symphony of premium ingredients, perfectly grilled bread, and a harmonious blend of savory and vibrant flavors, delivering a memorable and satisfying experience that will leave you longing for another delightful bite.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 19.95,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Can_of_Soda",
            	"name": "Can of Soda",
            	"description": "\\nQuench your thirst and savor the simple pleasure of an ice-cold can of your favorite soda, offering a crisp and satisfying sip that provides a delightful burst of flavor and a moment of pure refreshment.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 3.35,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [
                	"Choose_your_drink"
            	],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "Cinnamon_Bun_Danish",
            	"name": "Cinnamon Bun Danish",
            	"description": "The Cinnamon Bun Danish is a delectable pastry featuring a flaky, buttery dough swirled with cinnamon sugar and drizzled with a sweet glaze, perfect for a breakfast treat or midday snack.",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 6.35,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "The_East_Villager",
            	"name": "The East Villager",
            	"description": "The East Villager smoothie is a delightful blend of sweet blueberries, tropical pineapple, and creamy banana, creating a perfectly balanced and refreshing drink. It's a great way to start your day or give you a midday energy boost!",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 13.3,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [
                	"Choose_your_quantity"
            	],
            	"tax_rate": 0.08875
        	},
        	{
            	"partner_id": "The_Dylan_Panni",
            	"name": "The Dylan Panni",
            	"description": "\\nExperience culinary perfection with The Dylan Panni, a mouthwatering creation that combines layers of succulent meats, cheeses, and fresh ingredients nestled between perfectly grilled bread, offering a harmonious symphony of flavors and textures that will leave you enchanted with every delightful bite.\\n\\n\\n\\n\\n",
            	"internal_notes": null,
            	"is_deactivated": false,
            	"deactivation_start_date": null,
            	"deactivation_end_date": null,
            	"media_url": null,
            	"price": 19.95,
            	"original_price": 0.0,
            	"min_amount": 1,
            	"max_amount": 1,
            	"partner_availability": null,
            	"partner_modifiers": [],
            	"tax_rate": 0.08875
        	}
    	],
        	"modifiers": [
       	{
      "partner_id": "60217cba-b454-4999-9a6f-fb41ef1cbb23",
      "name": "Main Dish",
      "is_required": false,
      "min_options": 0,
      "max_options": 1,
      "default_options": [],
      "partner_options": [
   	 "47ca2d01-2751-4cc6-904c-c75029ba4ba1_10.0"
      ],
      "type": "variation"
    },
    {
      "partner_id": "6ade3193-5c92-4ead-82a3-f79d059de298",
      "name": "Cheese Type",
      "is_required": false,
      "min_options": 0,
      "max_options": 1,
      "default_options": [],
      "partner_options": [
   	 "cc5e12b5-2f1c-45d2-809c-eee883dc8774_1.0",
   	 "1bbc0ac1-b67e-4226-9b29-be18d13955fd_1.5"
      ],
      "type": "variation"
},
{
      "partner_id": "e0b53022-c908-4770-acc7-8fa8e863a8b1",
      "name": "Cheese Quantity",
      "is_required": false,
      "min_options": 0,
      "max_options": 1,
      "default_options": [],
      "partner_options": [
   	 "48d5ea4b-76e5-4c94-84bb-8d0c89a50e3c_0.0",
   	 "8b24dcd7-6213-4c3b-b1d1-24b71ebdc6ba_0.0"
      ],
      "type": "variation"
},
{
      "partner_id": "b5b9d68b-b215-44b4-8a27-0d60ff5bf0f5",
      "name": "Vegetable Salad",
      "is_required": false,
      "min_options": 0,
      "max_options": 1,
      "default_options": [],
      "partner_options": [
   	 "3d3bf161-1e48-4646-9244-81c8ec01f6ec_3.0",
   	 "b914a686-1de9-40a6-8e0f-4a25f2b0439c_5.0"
      ],
      "type": "variation"
    },
            	{
                	"partner_id": "Choose_your_drink",
                	"name": "Choose your drink",
                	"is_required": false,
                	"min_options": 1,
                	"max_options": 1,
                	"default_options": [],
                	"partner_options": [
                    	"Cola",
                    	"Diet-Cola"
                	],
                	"type": "variation"
            	},
            	{
                	"partner_id": "Choose_your_quantity",
                	"name": "Choose your quantity",
                	"is_required": false,
                	"min_options": 1,
                	"max_options": 1,
                	"default_options": [],
                	"partner_options": [
                    	"16_oz",
                    	"24_oz"
                	],
                	"type": "variation"
            	}
        	],
            	"options": [
   	   {
      "partner_id": "47ca2d01-2751-4cc6-904c-c75029ba4ba1_10.0",
      "name": "Vegetarian Burger",
      "price": 10.0,
      "original_price": null,
      "tax_rate": null,
      "description": null,
      "is_deactivated": false,
      "deactivation_start_date": null,
      "deactivation_end_date": null,
      "partner_modifiers": [
   	 "6ade3193-5c92-4ead-82a3-f79d059de298"
      ]
    },
    {
      "partner_id": "cc5e12b5-2f1c-45d2-809c-eee883dc8774_1.0",
      "name": "Cheddar",
      "price": 1.0,
      "original_price": null,
      "tax_rate": null,
      "description": null,
      "is_deactivated": false,
      "deactivation_start_date": null,
      "deactivation_end_date": null,
      "partner_modifiers": [
   	 "e0b53022-c908-4770-acc7-8fa8e863a8b1"
      ]
    },
    {
      "partner_id": "1bbc0ac1-b67e-4226-9b29-be18d13955fd_1.5",
      "name": "Swiss",
      "price": 1.5,
      "original_price": null,
      "tax_rate": null,
      "description": null,
      "is_deactivated": false,
      "deactivation_start_date": null,
      "deactivation_end_date": null,
      "partner_modifiers": [
   	 "e0b53022-c908-4770-acc7-8fa8e863a8b1"
      ]
    },
    {
      "partner_id": "48d5ea4b-76e5-4c94-84bb-8d0c89a50e3c_0.0",
      "name": "Single",
      "price": 3.0,
      "original_price": null,
      "tax_rate": null,
      "description": null,
      "is_deactivated": false,
      "deactivation_start_date": null,
      "deactivation_end_date": null,
      "partner_modifiers": []
    },
    {
      "partner_id": "8b24dcd7-6213-4c3b-b1d1-24b71ebdc6ba_0.0",
      "name": "Double",
      "price": 3.0,
      "original_price": null,
      "tax_rate": null,
      "description": null,
      "is_deactivated": false,
      "deactivation_start_date": null,
      "deactivation_end_date": null,
      "partner_modifiers": []
    },
{
      "partner_id": "3d3bf161-1e48-4646-9244-81c8ec01f6ec_3.0",
      "name": "Small",
      "price": 3.0,
      "original_price": null,
      "tax_rate": null,
      "description": null,
      "is_deactivated": false,
      "deactivation_start_date": null,
      "deactivation_end_date": null,
      "partner_modifiers": []
    },
    {
      "partner_id": "b914a686-1de9-40a6-8e0f-4a25f2b0439c_5.0",
      "name": "large",
      "price": 5.0,
      "original_price": null,
      "tax_rate": null,
      "description": null,
      "is_deactivated": false,
      "deactivation_start_date": null,
      "deactivation_end_date": null,
      "partner_modifiers": []
    },
                	{
                    	"partner_id": "24_oz",
                    	"name": "24_oz",
                    	"price": 0.0,
                    	"original_price": null,
                    	"tax_rate": null,
                    	"description": null,
                    	"is_deactivated": false,
                    	"deactivation_start_date": null,
                    	"deactivation_end_date": null,
			"partner_modifiers": []
                	},
                	{
                    	"partner_id": "16_oz",
                    	"name": "16_oz",
                    	"price": 0.0,
                    	"original_price": null,
                    	"tax_rate": null,
                    	"description": null,
                    	"is_deactivated": false,
                    	"deactivation_start_date": null,
                    	"deactivation_end_date": null,
			"partner_modifiers": []
                	},
                	{
                    	"partner_id": "Cola",
                    	"name": "Cola",
                    	"price": 0.0,
                    	"original_price": null,
                    	"tax_rate": null,
                    	"description": null,
                    	"is_deactivated": false,
                    	"deactivation_start_date": null,
                    	"deactivation_end_date": null,
			"partner_modifiers": []
                	},
                	{
                    	"partner_id": "Diet-Cola",
                    	"name": "Diet-Cola",
                    	"price": 0.0,
                    	"original_price": null,
                    	"tax_rate": null,
                    	"description": null,
                    	"is_deactivated": false,
                    	"deactivation_start_date": null,
                    	"deactivation_end_date": null,
			"partner_modifiers": []
                	}
            	],
                	"availabilities": []
}
{
    "menu": {
        "partner_id": "Menu",
            "name": "Menu",
                "description": null,
                    "media_url": null,
                        "partner_categories": [
                            "Paninis",
                            "Breakfast_Omelettes",
                            "Flagels",
                            "From_the_Bakery",
                            "Fruit_Smoothie_Secti",
                            "Beverages"
                        ]
    },
    "categories": [
        {
            "partner_id": "Fruit_Smoothie_Secti",
            "title": "Fruit Smoothie Section",
            "description": null,
            "is_deactivated": false,
            "deactivation_start_date": null,
            "deactivation_end_date": null,
            "partner_items": [
                "Berry_Blast",
                "Summer_Love",
                "Banana_split",
                "The_East_Villager",
                "The_Stuy_Towner",
                "Create_Your_Own"
            ],
            "partner_availability": null
        },
        {
            "partner_id": "Flagels",
            "title": "Flat Bagels",
            "description": null,
            "is_deactivated": false,
            "deactivation_start_date": null,
            "deactivation_end_date": null,
            "partner_items": [
                "Flagels_49908",
                "Dozen_Fagels"
            ],
            "partner_availability": null
        },
        {
            "partner_id": "Breakfast_Omelettes",
            "title": "Breakfast Omelettes",
            "description": null,
            "is_deactivated": true,
            "deactivation_start_date": null,
            "deactivation_end_date": null,
            "partner_items": [
                "Eggs_and_Vegetable_O",
                "Leo_Omelette",
                "Greek_Omelette",
                "Western_Omelette"
            ],
            "partner_availability": null
        },
        {
            "partner_id": "From_the_Bakery",
            "title": "From the Bakery",
            "description": null,
            "is_deactivated": false,
            "deactivation_start_date": null,
            "deactivation_end_date": null,
            "partner_items": [
                "Muffin",
                "Raspberry_Cigar",
                "Cinnamon_Bun_Danish",
                "Linzer_Tart",
                "Croissant",
                "Turnover",
                "Chocolate_Chip_Brown"
            ],
            "partner_availability": null
        },
        {
            "partner_id": "Paninis",
            "title": "Paninis",
            "description": null,
            "is_deactivated": false,
            "deactivation_start_date": null,
            "deactivation_end_date": null,
            "partner_items": [
                "The_Dylan_Panni",
                "The_Michelle_Panini",
                "The_Danny_Boy_Panini"
            ],
            "partner_availability": null
        },
        {
            "partner_id": "Beverages",
            "title": "Beverages",
            "description": null,
            "is_deactivated": false,
            "deactivation_start_date": null,
            "deactivation_end_date": null,
            "partner_items": [
                "Can_of_Soda",
                "Bottled_Soda_(20_oz)",
                "Tropicana_Juice",
                "Quart_of_Tropicana_J"
            ],
            "partner_availability": null
        }
    ],
        "items": [
            {
                "partner_id": "Raspberry_Cigar",
                "name": "Raspberry Cigar",
                "description": "A  flaky pastry filled with raspberry preserves that creates a deliciously sweet and tangy dessert. It's the perfect treat to enjoy with a cup of coffee or tea.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 6.35,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 3,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Chocolate_Chip_Brown",
                "name": "Chocolate Chip Brownie",
                "description": "Indulge in our decadent Chocolate Chip Brownie, made with rich cocoa and loaded with delicious chocolate chips for the ultimate chocolatey treat. Perfectly baked to perfection, this brownie is soft, chewy, and oh-so-satisfying!",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 7.0,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 3,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "The_Michelle_Panini",
                "name": "The Michelle Panini",
                "description": "Indulge in The Michelle Panini, a culinary masterpiece that showcases a delightful combination of premium ingredients. From the perfectly grilled bread to the melty cheeses, savory meats, and vibrant flavors of fresh ingredients, each bite of this delectable creation is a true delight that will transport your taste buds to a realm of pure satisfaction. ",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 19.95,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 3,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Bottled_Soda_(20_oz)",
                "name": "Bottled Soda (20 oz)",
                "description": "Indulge in the ultimate thirst-quenching experience with our 20 oz Bottled Soda, where a generous serving of your favorite carbonated beverage awaits. Savor every effervescent sip as it tantalizes your taste buds and provides a refreshing escape from the everyday.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 5.0,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 3,
                "partner_availability": null,
                "partner_modifiers": [
                    "Choose_your_drink"
                ],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Western_Omelette",
                "name": "Western Omelette",
                "description": "The Western Omelette is made with three eggs and filled with diced ham, peppers, onions, and served with home fries and a buttered bagel; it is a classic breakfast dish with a satisfying blend of flavors and textures.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 18.6,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 2,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Linzer_Tart",
                "name": "Linzer Tart",
                "description": "The Linzer Tart is a traditional Austrian pastry made with a nutty shortbread crust and filled with raspberry preserves, making for a sweet and delicious treat. It's perfect for anyone with a sweet tooth looking for a classic dessert option.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 6.35,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 3,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Muffin",
                "name": "Muffin",
                "description": "A freshly baked and moist muffin, bursting with flavor and perfect for a quick breakfast or snack.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 6.35,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 3,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Berry_Blast",
                "name": "Berry Blast",
                "description": "Berry Blast is a delicious and refreshing smoothie made with a blend of mixed berries, providing a burst of fruity flavor and healthy nutrients in every sip.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 13.3,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 3,
                "partner_availability": null,
                "partner_modifiers": [
                    "Choose_your_quantity"
                ],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "The_Stuy_Towner",
                "name": "The Stuy Towner",
                "description": "The Stuy Towner smoothie is a delicious blend of creamy peanut butter, ripe banana, and decadent chocolate syrup, making for a satisfying and indulgent treat. Perfect for a quick and tasty breakfast on the go or a midday pick-me-up.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 13.3,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 3,
                "partner_availability": null,
                "partner_modifiers": [
                    "Choose_your_quantity"
                ],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Summer_Love",
                "name": "Summer Love",
                "description": " is a refreshing blend of sweet strawberries, tropical pineapple, and juicy mango, perfect for a summer day. This drink is sure to transport your taste buds to a tropical paradise with every sip.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 13.3,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 3,
                "partner_availability": null,
                "partner_modifiers": [
                    "Choose_your_quantity"
                ],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Tropicana_Juice",
                "name": "Tropicana Juice",
                "description": "Tropicana Juice is a refreshing and flavorful beverage made from high-quality fruits that provides essential vitamins and nutrients.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 5.0,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 3,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Banana_split",
                "name": "Banana split",
                "description": "The Banana Split smoothie is a delightful blend of sweet strawberries, ripe bananas, and rich chocolate syrup, creating a perfectly balanced and indulgent treat.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 13.3,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 3,
                "partner_availability": null,
                "partner_modifiers": [
                    "Choose_your_quantity"
                ],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Leo_Omelette",
                "name": "Leo Omelette ",
                "description": "The Leo Omelette is a savory breakfast dish made with lox, eggs, and onions, served with home fries and a bagel or bialy. It's a classic combination that is both satisfying and delicious.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 18.6,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Create_Your_Own",
                "name": "Create Your Own",
                "description": "The Create Your Own smoothie allows you to select three toppings of your choice to create a personalized and delicious blend of flavors.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 13.59,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Turnover",
                "name": "Turnover",
                "description": "This delectable pastry is a sweet treat that combines soft and sweet apples with a flaky pastry, baked until golden and finished off with a delicious glaze.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 6.35,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Greek_Omelette",
                "name": "Greek Omelette",
                "description": "The Greek Omelette is a breakfast dish made with 3 eggs, feta cheese, and caramelized onions, served with home fries and a buttered bagel or bialy, and may be a savory option for those looking to start their day with a hearty meal.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 18.6,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Dozen_Fagels",
                "name": "Dozen Flat Bagels",
                "description": "A dozen of our deliciously chewy flat bagels, perfect for sharing with friends and family for breakfast or brunch. Choose from a variety of flavors including plain, sesame, poppy seed, and everything.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 48.0,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Eggs_and_Vegetable_O",
                "name": "Vegetable Omelette ",
                "description": "This dish features a fluffy three-egg omelette filled with nutritious vegetables, accompanied by crispy home fries and a choice of bagel or bialy.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 17.3,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Croissant",
                "name": "Croissant",
                "description": "A classic pastry that is perfect for breakfast or a snack, the buttery and flaky croissant can be enjoyed on its own or paired with your choice of butter or jam for added flavor.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 6.35,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Quart_of_Tropicana_J",
                "name": "Quart of Tropicana Juice",
                "description": "A refreshing and deliciously healthy way to quench your thirst, a quart of Tropicana juice is perfect for sharing with family and friends. Made from 100% pure and natural fruits, it's a great source of vitamins and minerals to help you stay energized throughout the day.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 8.65,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Flagels_49908",
                "name": "Flat Bagels",
                "description": "Flat bagels are an alternative to the traditional bagel that is thinner and wider with a smaller hole, making it ideal for toasting and sandwich making.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 4.0,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "The_Danny_Boy_Panini",
                "name": "The Danny Boy Panini",
                "description": "A culinary masterpiece crafted with care. This delectable creation features a symphony of premium ingredients, perfectly grilled bread, and a harmonious blend of savory and vibrant flavors, delivering a memorable and satisfying experience that will leave you longing for another delightful bite.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 19.95,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Can_of_Soda",
                "name": "Can of Soda",
                "description": "\\nQuench your thirst and savor the simple pleasure of an ice-cold can of your favorite soda, offering a crisp and satisfying sip that provides a delightful burst of flavor and a moment of pure refreshment.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 3.35,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [
                    "Choose_your_drink"
                ],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "Cinnamon_Bun_Danish",
                "name": "Cinnamon Bun Danish",
                "description": "The Cinnamon Bun Danish is a delectable pastry featuring a flaky, buttery dough swirled with cinnamon sugar and drizzled with a sweet glaze, perfect for a breakfast treat or midday snack.",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 6.35,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "The_East_Villager",
                "name": "The East Villager",
                "description": "The East Villager smoothie is a delightful blend of sweet blueberries, tropical pineapple, and creamy banana, creating a perfectly balanced and refreshing drink. It's a great way to start your day or give you a midday energy boost!",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 13.3,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [
                    "Choose_your_quantity"
                ],
                "tax_rate": 0.08875
            },
            {
                "partner_id": "The_Dylan_Panni",
                "name": "The Dylan Panni",
                "description": "\\nExperience culinary perfection with The Dylan Panni, a mouthwatering creation that combines layers of succulent meats, cheeses, and fresh ingredients nestled between perfectly grilled bread, offering a harmonious symphony of flavors and textures that will leave you enchanted with every delightful bite.\\n\\n\\n\\n\\n",
                "internal_notes": null,
                "is_deactivated": false,
                "deactivation_start_date": null,
                "deactivation_end_date": null,
                "media_url": null,
                "price": 19.95,
                "original_price": 0.0,
                "min_amount": 1,
                "max_amount": 1,
                "partner_availability": null,
                "partner_modifiers": [],
                "tax_rate": 0.08875
            }
        ],
            "modifiers": [
                {
                    "partner_id": "Choose_your_drink",
                    "name": "Choose your drink",
                    "is_required": false,
                    "min_options": 1,
                    "max_options": 1,
                    "default_options": [],
                    "partner_options": [
                        "Cola",
                        "Diet-Cola"
                    ],
                    "type": "variation"
                },
                {
                    "partner_id": "Choose_your_quantity",
                    "name": "Choose your quantity",
                    "is_required": false,
                    "min_options": 1,
                    "max_options": 1,
                    "default_options": [],
                    "partner_options": [
                        "16_oz",
                        "24_oz"
                    ],
                    "type": "variation"
                }
            ],
                "options": [
                    {
                        "partner_id": "24_oz",
                        "name": "24_oz",
                        "price": 0.0,
                        "original_price": null,
                        "tax_rate": null,
                        "description": null,
                        "is_deactivated": false,
                        "deactivation_start_date": null,
                        "deactivation_end_date": null
                    },
                    {
                        "partner_id": "16_oz",
                        "name": "16_oz",
                        "price": 0.0,
                        "original_price": null,
                        "tax_rate": null,
                        "description": null,
                        "is_deactivated": false,
                        "deactivation_start_date": null,
                        "deactivation_end_date": null
                    },
                    {
                        "partner_id": "Cola",
                        "name": "Cola",
                        "price": 0.0,
                        "original_price": null,
                        "tax_rate": null,
                        "description": null,
                        "is_deactivated": false,
                        "deactivation_start_date": null,
                        "deactivation_end_date": null
                    },
                    {
                        "partner_id": "Diet-Cola",
                        "name": "Diet-Cola",
                        "price": 0.0,
                        "original_price": null,
                        "tax_rate": null,
                        "description": null,
                        "is_deactivated": false,
                        "deactivation_start_date": null,
                        "deactivation_end_date": null
                    }
                ],
                    "availabilities": []
}