Thực thể trình đơn

Thực thể Menu xác định các thuộc tính như mục trong trình đơn, ưu đãi và phần trong trình đơn.

Khi xác định một thực thể Menu, hãy sử dụng kiểu Menu.

Sơ đồ mối quan hệ với thực thể trình đơn
Hình 1: Thực thể trình đơn cho thấy mối quan hệ với mục Menu, Tình trạng còn hàng, MenuItem, MenuItemOption và MenuItemOffer.

Sử dụng MenuSection để sắp xếp đối tượng MenuItem thành các danh mục logic. Phương pháp này hữu ích cho các nhà hàng có nhiều thực đơn. Ví dụ: một nhà hàng có thể có thực đơn khác nhau cho bữa sáng, bữa trưa và bữa tối. Bạn có thể thêm mỗi trình đơn dưới dạng một MenuSection riêng.

Mỗi mục trong trình đơn có thể bao gồm một nội dung mô tả, hình ảnh, tiện ích bổ sung và thông tin dinh dưỡng. Ưu đãi được dùng để định giá mục trong trình đơn, xác định thời điểm có mặt hàng và xác định thời điểm có giá đặc biệt. Dữ liệu trong thực thể Menu dự kiến sẽ thay đổi và làm mới sau mỗi lần tải nguồn cấp dữ liệu lên.

Ví dụ sau đây xác định một thực thể Menu cơ bản với hai phần trình đơn khác nhau.

{
  "@type":"Menu",
  "@id":"menu_1"
}
{
  "@type":"MenuSection",
  "@id":"menu_1_pizza",
  "menuId":{
    "@id":"menu_1",
    "displayOrder":1
  },
  "name":"Pizza"
}
{
  "@type":"MenuItem",
  "@id":"menu_1_pizza_cheese",
  "name":"Cheese Pizza - Large",
  "description":"Four cheese pizza with marinara sauce.",
  "parentMenuSectionId":{
    "@id":"menu_1_pizza",
    "displayOrder":1
  }
}
{
  "@type":"MenuItemOffer",
  "@id":"menu_1_pizza_cheese_offer",
  "sku":"6680306",
  "menuItemId":"menu_1_pizza_cheese",
  "price":20.5,
  "priceCurrency":"USD"
}
{
  "@type":"MenuItem",
  "@id":"menu_1_pizza_pesto",
  "name":"Pesto Primavera Pizza - Large",
  "description":"Pesto with pancetta and freshly sliced tomatoes.",
  "parentMenuSectionId":{
    "@id":"menu_1_pizza",
    "displayOrder":2
  }
}
{
  "@type":"MenuItemOffer",
  "@id":"menu_1_pizza_pesto_offer",
  "sku":"9825028",
  "menuItemId":"menu_1_pizza_pesto",
  "price":23.5,
  "priceCurrency":"USD"
}
{
  "@type":"MenuSection",
  "@id":"menu_1_pasta",
  "menuId":{
    "@id":"menu_1",
    "displayOrder":2
  },
  "name":"Pasta"
}
{
  "@type":"MenuItem",
  "@id":"menu_1_pasta_spag",
  "name":"Spaghetti",
  "description":"With meat sauce and meatballs.",
  "parentMenuSectionId":{
    "@id":"menu_1_pasta",
    "displayOrder":1
  }
}
{
  "@type":"MenuItemOffer",
  "@id":"menu_1_pasta_spag_offer",
  "sku":"6680300",
  "menuItemId":"menu_1_pasta_spag",
  "price":15.75,
  "priceCurrency":"USD"
}
{
  "@type":"MenuItem",
  "@id":"menu_1_pasta_spin_ling",
  "name":"Spinach Linguini",
  "description":"Grilled chicken breast, shiitake mushrooms, fresh Roma tomato,
    garlic, and fresh herbs.",
  "parentMenuSectionId":{
    "@id":"menu_1_pasta",
    "displayOrder":2
  }
}
{
  "@type":"MenuItemOffer",
  "@id":"menu_1_pasta_spin_ling_offer",
  "sku":"6680312",
  "menuItemId":"menu_1_pasta_spin_ling",
  "price":15.75,
  "priceCurrency":"USD"
}