Cookies & analytics

    We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.

    SwiftSchema Logo

    SwiftSchema

    Intuitive Schema Generation at Your Fingertips

    AboutLearnContact
      Stack

      Festival Lineup Stack

      Festival lineup pages with EventSeries + ItemList + Event context, FAQs, and breadcrumbs.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Festival lineup pages with dates and performers
      • Event series pages for multi-day festivals
      • Pages where FAQs clarify schedules, tickets, and entry policies

      What's included

      • Event Series
        Open generator

        Represents the overall festival series across dates.

      • Lists the individual festival events or stages.

      • Defines each festival day or stage event.

      • Frequently Asked Questions
        Open generator

        Answers questions about tickets, entry, and schedules.

      • Breadcrumb
        Open generator

        Provides navigation context to the lineup page.

      Required properties (stack union)

      Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).

      endDate
      itemListElement.item.@id
      itemListElement.name
      itemListElement.position
      itemListElement[].name
      location.name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      startDate
      url

      Recommended properties (stack union)

      eventAttendanceMode
      eventStatus
      itemListElement[].item
      itemListOrder
      location.name
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      numberOfItems
      offers.url

      Combined JSON-LD

      Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.

      Validate
      [
        {
          "@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" }
          ]
        }
      ]

      Implementation steps

      1. Start from your live product detail page content; ensure titles, prices, and availability match the page.
      2. Embed one JSON-LD script in the head or just before the closing body tag using the combined example as a template.
      3. Fill shipping details for each region you serve and keep them aligned with on-page shipping tables.
      4. Attach your canonical MerchantReturnPolicy URL and keep the policy text in sync with Merchant Center.
      5. Add 3–6 FAQs that address purchase blockers (shipping, returns, compatibility) and keep answers consistent with visible content.
      6. Validate in the Rich Results Test and revalidate after price/availability/policy changes.

      Common errors and fixes

      FAQs

      Can I list multiple stages?

      Yes. Use separate Event entries per stage and include each in the ItemList.

      Do I need an EventSeries?

      Yes. EventSeries represents the overall multi-day festival; individual Event objects represent each day or stage.

      References