recipeYield
recipeYield · Recommended
Appears in
What is it?
recipeYield states how much food a recipe produces. This can be a number of servings, a physical quantity like "1 loaf," or both. It tells readers what to expect before they start cooking.
Why this matters for AEO
When a user asks "how many servings does this banana bread make," AI answer engines pull recipeYield for a direct answer. This field also helps engines handle scaling queries like "recipes that serve 8" by matching yield values to the requested serving count.
What the specs say
Schema.org:QuantitativeValue or Text. The quantity produced by the recipe (for example, number of people served, number of servings, etc). Source
Google: Recommended. "The quantity produced by the recipe, if applicable." Source
Google displays the servings count in recipe rich results.
How to find your value
- Recipe card — "Serves" or "Yield" in the recipe header
- Batch size — Number of cookies, muffins, or portions produced
- Physical output — "1 loaf," "2 dozen," "one 9-inch pie"
Format and code
Type: Text or QuantitativeValue
recipeYield accepts a simple string, an array of strings, or a QuantitativeValue object. The most common patterns:
Simple string:
{
"@type": "Recipe",
"name": "Banana Bread",
"recipeYield": "8 servings"
}
Array with servings and physical yield:
{
"@type": "Recipe",
"name": "Banana Bread",
"recipeYield": ["18 servings", "1 loaf"]
}
The array format is useful when a recipe has both a serving count and a physical description. Google picks up the numeric serving count for display.
Webflow implementation
Static pages
Add to Page Settings > Custom Code (Before