The menu page is where AI systems learn what your food establishment actually serves. Structured menu data lets AI answer specific food queries, compare prices, and surface your items when someone asks for a particular dish or dietary option. This blueprint gives you the complete JSON-LD graph for a machine-readable menu.
A menu page without structured data is just text that AI has to guess about. With proper schema markup, AI can parse your menu into categories, individual items, prices, and dietary flags, making your business far more useful in food-related queries.
Menu node with hasMenuSection organizes your offerings into logical categories that AI can navigate.MenuItem inside a section includes a name, description, price, and optional dietary restriction flags so AI can answer specific food queries.FoodEstablishment node with hasMenu connects the menu to your business identity.offers with price and priceCurrency on each item lets AI compare your prices and answer budget-related queries.Each field in the template below serves a specific role in how AI systems discover, classify, and recommend your business.
Researched and tested by Minnesota AI
nameurlCopy this prompt and paste it into Claude, ChatGPT, Cursor, or any AI coding tool. It will ask for your business details and generate ready-to-use JSON-LD schema for your page.
You are implementing AIFDS-compliant JSON-LD structured data for a Food Establishment Menu page. AIFDS (AI-Friendly Data Structure) is a schema framework built on research into which structured data fields AI systems actually read, parse, and use when deciding whether to cite a page. Documentation at aifds.org. Before generating any code, ask me for the following information in a single numbered list. Do not generate schema until I have answered every required field. REQUIRED — do not proceed without these: 1. Business name 2. Diet type 3. Domain 4. Faq answer 5. Faq question 6. Item description 7. Item name 8. Item price 9. Menu description 10. Menu name 11. Menu page title 12. Section description 13. Section name OPTIONAL — ask for these but proceed if I skip them: 1. Any additional details not covered above Once I provide the information, output a complete JSON-LD script block ready to paste into the <head> of my HTML page. Output requirements: - Valid JSON-LD wrapped in <script type="application/ld+json"> tags - schema.org vocabulary only - Every AIFDS-required field for this industry and page type included - Include this data attribute on the script tag: data-aifds="aifds.org Food Establishment Menu" - No placeholder text — omit missing optional fields rather than fill with examples - After the code block, list any optional fields skipped that would strengthen AI citation
Generated schema follows the AIFDS framework. Fields were selected based on research into AI crawler behavior. View the research at minnesota.ai
Copy the template below and replace every YOUR_* value with your own data. This block belongs in a <script type="application/ld+json"> tag in the <head> of your menu page.
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "FoodEstablishment",
"@id": "https://YOUR_DOMAIN.com/#business",
"name": "YOUR_BUSINESS_NAME",
"url": "https://YOUR_DOMAIN.com",
"hasMenu": {
"@type": "Menu",
"@id": "https://YOUR_DOMAIN.com/menu/#menu",
"name": "YOUR_MENU_NAME",
"description": "YOUR_MENU_DESCRIPTION",
"hasMenuSection": [
{
"@type": "MenuSection",
"name": "YOUR_SECTION_NAME_1",
"description": "YOUR_SECTION_DESCRIPTION_1",
"hasMenuItem": [
{
"@type": "MenuItem",
"name": "YOUR_ITEM_NAME_1",
"description": "YOUR_ITEM_DESCRIPTION_1",
"offers": {
"@type": "Offer",
"price": "YOUR_ITEM_PRICE_1",
"priceCurrency": "USD"
}
},
{
"@type": "MenuItem",
"name": "YOUR_ITEM_NAME_2",
"description": "YOUR_ITEM_DESCRIPTION_2",
"offers": {
"@type": "Offer",
"price": "YOUR_ITEM_PRICE_2",
"priceCurrency": "USD"
},
"suitableForDiet": "YOUR_DIET_TYPE"
}
]
},
{
"@type": "MenuSection",
"name": "YOUR_SECTION_NAME_2",
"description": "YOUR_SECTION_DESCRIPTION_2",
"hasMenuItem": [
{
"@type": "MenuItem",
"name": "YOUR_ITEM_NAME_3",
"description": "YOUR_ITEM_DESCRIPTION_3",
"offers": {
"@type": "Offer",
"price": "YOUR_ITEM_PRICE_3",
"priceCurrency": "USD"
}
}
]
}
]
}
},
{
"@type": "WebPage",
"@id": "https://YOUR_DOMAIN.com/menu/#webpage",
"url": "https://YOUR_DOMAIN.com/menu/",
"name": "YOUR_MENU_PAGE_TITLE",
"isPartOf": {
"@id": "https://YOUR_DOMAIN.com/#website"
},
"about": {
"@id": "https://YOUR_DOMAIN.com/menu/#menu"
}
},
{
"@type": "BreadcrumbList",
"@id": "https://YOUR_DOMAIN.com/menu/#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://YOUR_DOMAIN.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Menu",
"item": "https://YOUR_DOMAIN.com/menu/"
}
]
},
{
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "YOUR_FAQ_QUESTION_1",
"acceptedAnswer": {
"@type": "Answer",
"text": "YOUR_FAQ_ANSWER_1"
}
},
{
"@type": "Question",
"name": "YOUR_FAQ_QUESTION_2",
"acceptedAnswer": {
"@type": "Answer",
"text": "YOUR_FAQ_ANSWER_2"
}
},
{
"@type": "Question",
"name": "YOUR_FAQ_QUESTION_3",
"acceptedAnswer": {
"@type": "Answer",
"text": "YOUR_FAQ_ANSWER_3"
}
}
]
}
]
}
Ideally, yes. The more items you include, the more queries your business can appear in. If your menu is very large, start with your most popular or signature items in each section and expand over time. Even partial coverage is better than none.
Schema.org defines specific diet types including https://schema.org/GlutenFreeDiet, https://schema.org/VeganDiet, https://schema.org/VegetarianDiet, https://schema.org/KosherDiet, and https://schema.org/HalalDiet. Use the full URL for each applicable diet on each menu item.
Yes. Stale pricing in structured data is worse than no pricing at all. When AI surfaces an incorrect price, it damages trust in your business. Keep your JSON-LD menu in sync with your actual menu, or remove price data if you cannot maintain it.