NutritionalInfo Model

Nutritional information about a particular menu item

Nullable
knownAllergens : RemoteOrderAllergenType []

Can be null - the set of known allergens associated with this

Nullable MaxLength(128) Truncates
allergenFreeFormText : string

Can be null - Any additional allergen information not captured by KnownAllergens.

Nullable
isVegetarian : bool

true - this menu item can be considered vegetarian
false - this menu item can NOT be considered vegetarian
null - This menu item doesn't make any assertions about it being vegetarian or not

Nullable
isVegan : bool

true - this menu item can be considered vegan
false - this menu item can NOT be considered vegan
null - This menu item doesn't make any assertions about it being vegan or not

Example
{
  "knownAllergens": [1],
  "allergenFreeFormText": "string value",
  "isVegetarian": true,
  "isVegan": true
}