The about page gives your entertainment venue a story that AI can understand. It connects your founding history, ownership, and mission to your business entity, helping AI differentiate your venue from competitors and cite your background when making recommendations.
The about page provides narrative context for your venue. AI uses this data to answer questions like "who owns this place?" or "how long has this venue been open?" Without structured about data, AI can only repeat your name and address.
foundingDate and founder properties give AI a timeline and human origin for your venue, which builds trust in recommendations.description on the EntertainmentBusiness node lets AI summarize what makes your venue unique.Person nodes with jobTitle connects individuals to your business, enabling AI to answer "who runs this venue?"AboutPage as the WebPage type tells AI this page is specifically about the organization.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
nameurlfoundingDateCopy 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 Entertainment Business About 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. Domain 2. Employee count 3. Faq answer 4. Faq question 5. Founder name 6. Founding year 7. Venue description 8. Venue 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 Entertainment Business About" - 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 about page.
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "EntertainmentBusiness",
"@id": "https://YOUR_DOMAIN.com/#venue",
"name": "YOUR_VENUE_NAME",
"url": "https://YOUR_DOMAIN.com",
"description": "YOUR_VENUE_DESCRIPTION",
"foundingDate": "YOUR_FOUNDING_YEAR",
"founder": {
"@type": "Person",
"name": "YOUR_FOUNDER_NAME"
},
"numberOfEmployees": {
"@type": "QuantitativeValue",
"value": "YOUR_EMPLOYEE_COUNT"
}
},
{
"@type": "AboutPage",
"@id": "https://YOUR_DOMAIN.com/about/#webpage",
"url": "https://YOUR_DOMAIN.com/about/",
"name": "About — YOUR_VENUE_NAME",
"isPartOf": {
"@id": "https://YOUR_DOMAIN.com/#website"
},
"about": {
"@id": "https://YOUR_DOMAIN.com/#venue"
}
},
{
"@type": "BreadcrumbList",
"@id": "https://YOUR_DOMAIN.com/about/#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://YOUR_DOMAIN.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "About",
"item": "https://YOUR_DOMAIN.com/about/"
}
]
},
{
"@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"
}
}
]
}
]
}
No. Use the same @id and only include about-specific properties like description, foundingDate, and founder. AI merges nodes with the same @id, so you do not need to duplicate address and hours here.
Yes. Entertainment is a trust-based decision — people want to know the story behind a venue before visiting. AI uses your about page data to provide richer recommendations, like "this family-owned arcade has been open since 2005," which builds confidence in the recommendation.
You can use the award property on the EntertainmentBusiness node to list notable awards. This gives AI a credibility signal it can cite, like "award-winning escape room" in its recommendations.