![JAR search and dependency download from the Maven repository](/logo.png)
org.schema.MenuItem Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/MenuItem
* A food or drink item listed in a menu or menu section.
*
* @author schema.org
* @class MenuItem
* @module org.schema
* @extends Intangible
*/
public class MenuItem extends Intangible {
/**
* Schema.org/nutrition
* Nutrition information about the recipe or menu item.
*
* @property nutrition
* @type NutritionInformation
*/
public NutritionInformation nutrition;
/**
* Schema.org/offers
* An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event.
*
* @property offers
* @type Offer
*/
public Offer offers;
/**
* Schema.org/suitableForDiet
* Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.
*
* @property suitableForDiet
* @type RestrictedDiet
*/
public RestrictedDiet suitableForDiet;
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public MenuItem() {
context = "http://schema.org/";
type = "MenuItem";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy