We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Festival lineup pages with EventSeries + ItemList + Event context, FAQs, and breadcrumbs.
Represents the overall festival series across dates.
Lists the individual festival events or stages.
Defines each festival day or stage event.
Answers questions about tickets, entry, and schedules.
Provides navigation context to the lineup page.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "EventSeries",
"@id": "https://www.example.com/festival/lineup#series",
"name": "Summer Sound Festival 2025",
"startDate": "2025-07-25",
"endDate": "2025-07-27",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"url": "https://www.example.com/festival/lineup",
"location": {
"@type": "Place",
"name": "Riverfront Park"
}
},
{
"@context": "https://schema.org",
"@type": "Event",
"@id": "https://www.example.com/festival/lineup#day-1",
"name": "Day 1 — Main Stage",
"startDate": "2025-07-25T16:00:00-05:00",
"endDate": "2025-07-25T23:00:00-05:00",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"url": "https://www.example.com/festival/lineup#day-1",
"location": {
"@type": "Place",
"name": "Main Stage, Riverfront Park"
},
"offers": {
"@type": "Offer",
"url": "https://www.example.com/festival/tickets"
}
},
{
"@context": "https://schema.org",
"@type": "ItemList",
"@id": "https://www.example.com/festival/lineup#list",
"itemListOrder": "https://schema.org/ItemListOrderAscending",
"numberOfItems": 2,
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Day 1 — Main Stage",
"item": { "@id": "https://www.example.com/festival/lineup#day-1" }
},
{
"@type": "ListItem",
"position": 2,
"name": "Day 2 — Main Stage",
"item": { "@id": "https://www.example.com/festival/lineup#day-2" }
}
]
},
{
"@context": "https://schema.org",
"@type": "Event",
"@id": "https://www.example.com/festival/lineup#day-2",
"name": "Day 2 — Main Stage",
"startDate": "2025-07-26T16:00:00-05:00",
"endDate": "2025-07-26T23:00:00-05:00",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"url": "https://www.example.com/festival/lineup#day-2",
"location": {
"@type": "Place",
"name": "Main Stage, Riverfront Park"
},
"offers": {
"@type": "Offer",
"url": "https://www.example.com/festival/tickets"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Are single-day tickets available?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Single-day and weekend passes are listed on the tickets page."
}
},
{
"@type": "Question",
"name": "When is the final lineup announced?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Final lineup is announced two weeks before the festival."
}
},
{
"@type": "Question",
"name": "What items are prohibited?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Outside alcohol, glass containers, and large backpacks are not permitted."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Festival", "item": "https://www.example.com/festival" },
{ "@type": "ListItem", "position": 3, "name": "Lineup", "item": "https://www.example.com/festival/lineup" }
]
}
]Yes. Use separate Event entries per stage and include each in the ItemList.
Yes. EventSeries represents the overall multi-day festival; individual Event objects represent each day or stage.