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

      Event Series / Pass Stack

      Tour/season pages linking recurring events with FAQs and breadcrumb context. Great for festivals, tours, or multi-date passes.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Tours or festivals with multiple dates/cities needing structured series + event details
      • Season pass pages that link to multiple occurrences with offers
      • Pages where FAQs clarify access, tickets, and schedule changes across dates

      What's included

      • Event Series
        Open generator

        Captures the overarching tour/season with dates and attendance mode.

      • Represents an individual date/city occurrence with offers.

      • Frequently Asked Questions
        Open generator

        Clarifies tickets, transfers, weather/cancellation, and access across dates.

      • Breadcrumb
        Open generator

        Provides navigation context for the series 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`).

      eventAttendanceMode
      itemListElement[].name
      location.name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      offers.price
      offers.priceCurrency
      startDate

      Recommended properties (stack union)

      description
      eventSchedule.byMonthDay[]
      eventSchedule.repeatFrequency
      eventStatus
      image
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      offers.availability
      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/tours/summer-fest-2026#series",
          "name": "Summer Fest 2026 Tour",
          "description": "A 10-city summer festival with indie and electronic artists.",
          "startDate": "2026-06-10",
          "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
          "eventStatus": "https://schema.org/EventScheduled",
          "location": {
            "@type": "Place",
            "name": "Multiple cities"
          },
          "eventSchedule": {
            "@type": "Schedule",
            "repeatFrequency": "P1W",
            "byMonthDay": [10, 17, 24]
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "MusicEvent",
          "@id": "https://www.example.com/tours/summer-fest-2026/austin#event",
          "name": "Summer Fest 2026 — Austin",
          "description": "Outdoor show with indie and electronic artists on the Summer Fest tour.",
          "startDate": "2026-06-17T19:00:00-05:00",
          "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
          "eventStatus": "https://schema.org/EventScheduled",
          "image": [
            "https://www.example.com/images/summer-fest-tour.webp"
          ],
          "location": {
            "@type": "Place",
            "name": "Riverside Amphitheater",
            "address": {
              "@type": "PostalAddress",
              "streetAddress": "500 River Rd",
              "addressLocality": "Austin",
              "addressRegion": "TX",
              "postalCode": "78702",
              "addressCountry": "US"
            }
          },
          "offers": {
            "@type": "Offer",
            "price": "79.00",
            "priceCurrency": "USD",
            "availability": "https://schema.org/InStock",
            "url": "https://tickets.example.com/summer-fest/austin"
          },
          "organizer": {
            "@type": "Organization",
            "name": "Summer Fest",
            "url": "https://www.example.com"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Is my ticket valid for multiple cities?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Tickets are city-specific. Season passes are available separately for all 10 dates."
              }
            },
            {
              "@type": "Question",
              "name": "Can I transfer my ticket?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Transfers are allowed up to 24 hours before showtime through your ticket portal."
              }
            },
            {
              "@type": "Question",
              "name": "What if it rains?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Shows are rain or shine. Severe weather updates will be emailed and posted; reschedules will honor existing tickets."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Tours", "item": "https://www.example.com/tours" },
            { "@type": "ListItem", "position": 3, "name": "Summer Fest 2026", "item": "https://www.example.com/tours/summer-fest-2026" }
          ]
        }
      ]

      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

      Do I need both EventSeries and Event?

      Use both on tour/season pages: EventSeries for the overarching run, Event for the primary date on the page. Link additional dates on their own pages when possible.

      How should I handle passes vs. single tickets?

      Use offers on the Event for single-date tickets. If you sell a pass, include an additional Offer with a URL that matches the pass CTA on the page.

      References