FoodEvent
FoodEvent is an Event subtype for food tastings, wine dinners, cooking classes, food festivals, and any event centered on food and drink. It adds no properties of its own. Use organizer to reference the Restaurant or venue hosting the event, and offers for ticket or reservation pricing.
For a complete property walkthrough, see the Event example. Every property shown there applies to FoodEvent. Replace "@type": "Event" with "@type": "FoodEvent".
Full example of schema.org/FoodEvent json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FoodEvent",
"name": "Lackawanna Valley Tasting Menu Night",
"description": "Five-course tasting menu featuring seasonal ingredients from Lackawanna Valley farms. Wine pairings available.",
"image": "https://dunmoregrill.com/events/tasting-night-aug-2026/photo-16x9.jpg",
"startDate": "2026-08-22T18:30:00-04:00",
"endDate": "2026-08-22T21:30:00-04:00",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"location": {
"@type": "Restaurant",
"name": "The Dunmore Grill",
"address": { "@type": "PostalAddress", "streetAddress": "412 Main Street", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
},
"organizer": { "@type": "Restaurant", "name": "The Dunmore Grill" },
"offers": { "@type": "Offer", "name": "Tasting Menu", "price": "85.00", "priceCurrency": "USD", "availability": "https://schema.org/LimitedAvailability", "url": "https://dunmoregrill.com/events/tasting-night-aug-2026/reserve" },
"maximumAttendeeCapacity": 30,
"isAccessibleForFree": false
}
</script>Minimal valid version
The smallest markup that still produces a valid FoodEvent entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FoodEvent",
"name": "Lackawanna Valley Tasting Menu Night",
"startDate": "2026-08-22T18:30:00-04:00",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"location": { "@type": "Place", "name": "The Dunmore Grill", "address": { "@type": "PostalAddress", "streetAddress": "412 Main Street", "addressLocality": "Dunmore", "addressRegion": "PA", "addressCountry": "US" } },
"image": "https://dunmoregrill.com/events/tasting-night-aug-2026/photo-16x9.jpg",
"description": "Five-course tasting menu featuring local ingredients."
}
</script>Google rich results this unlocks
Markup matching this example makes your page eligible for the following Google Search rich results. The primary target drives the required / recommended property classification in the advanced code block above.
- Google docsEvent rich resultprimary
Common FoodEvent mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
Using generic Event for a food tasting
Wrong"@type": "Event" for a tasting menu night or food festivalRight"@type": "FoodEvent"FoodEvent classifies the event as food-related, helping Google surface it for food event searches and restaurant discovery.
Schema properties in this example
About the example data
The Dunmore Grill hosts a monthly tasting menu night featuring local ingredients from the Lackawanna Valley.
Comments
Loading comments...