FastFoodRestaurant
FastFoodRestaurant is a direct FoodEstablishment subtype for quick-service restaurants. For sit-down restaurants with full service, use Restaurant. Populate hasDriveThroughService (inherited from Place) when a drive-through is available.
Full example of schema.org/FastFoodRestaurant 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": "FastFoodRestaurant",
"name": "Xoo Burgers Dunmore",
"address": { "@type": "PostalAddress", "streetAddress": "340 Scranton Rd", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-0751",
"openingHours": "Mo-Su 06:00-00:00",
"priceRange": "$",
"servesCuisine": ["Burgers", "American"],
"hasDriveThroughService": true,
"hasMenu": "https://xoocode.com/shops/xoo-burgers/menu",
"url": "https://xoocode.com/shops/xoo-burgers"
}
</script>Minimal valid version
The smallest markup that still produces a valid FastFoodRestaurant 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": "FastFoodRestaurant",
"name": "Xoo Burgers Dunmore",
"address": { "@type": "PostalAddress", "streetAddress": "340 Scranton Rd", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
FastFoodRestaurant is a structural type. It does not produce a rich result on its own.
Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). FastFoodRestaurant becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common FastFoodRestaurant 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 Restaurant for a QSR
WrongRestaurant on a quick-service counter businessRightFastFoodRestaurant for QSR; Restaurant for sit-down'Fast food near me' and 'restaurant near me' are different queries. Use the specific subtype.
Schema properties in this example
About the example data
"Xoo Burgers Dunmore", a fictional quick-service burger shop with a drive-through.
Comments
Loading comments...