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

      Tutoring Marketplace Stack

      Tutor marketplace pages with CollectionPage + ItemList + Service context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Tutor marketplace landing pages with filters
      • Subject/category listings of available tutors
      • Pages where FAQs clarify pricing, sessions, and cancellations

      What's included

      • Collection Page
        Open generator

        Represents the marketplace page aggregating tutor listings.

      • Lists tutor services with names and URLs.

      • Describes tutoring services offered by listed tutors.

      • Frequently Asked Questions
        Open generator

        Answers questions about booking, pricing, and cancellations.

      • Breadcrumb
        Open generator

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

      areaServed.name
      description
      itemListElement[].name
      itemListElement[].url
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      offers.price
      offers.priceCurrency
      provider.name
      serviceType
      url

      Recommended properties (stack union)

      description
      hasPart.@id
      inLanguage
      itemListElement[].item
      itemListOrder
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      numberOfItems
      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": "CollectionPage",
          "@id": "https://www.example.com/tutors#page",
          "name": "Math Tutors",
          "description": "Browse vetted math tutors for algebra, calculus, and test prep.",
          "url": "https://www.example.com/tutors/math",
          "hasPart": [
            { "@id": "https://www.example.com/tutors#list" }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "ItemList",
          "@id": "https://www.example.com/tutors#list",
          "name": "Math Tutor Listings",
          "itemListOrder": "https://schema.org/ItemListOrderAscending",
          "numberOfItems": 3,
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Alex Rivera", "url": "https://www.example.com/tutors/alex-rivera" },
            { "@type": "ListItem", "position": 2, "name": "Priya Shah", "url": "https://www.example.com/tutors/priya-shah" },
            { "@type": "ListItem", "position": 3, "name": "Jordan Lee", "url": "https://www.example.com/tutors/jordan-lee" }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "Service",
          "@id": "https://www.example.com/tutors/math#service",
          "name": "Math Tutoring",
          "serviceType": "Tutoring",
          "description": "1:1 tutoring for algebra, geometry, and calculus.",
          "provider": { "@type": "Organization", "name": "Northwind Tutors" },
          "areaServed": { "@type": "AdministrativeArea", "name": "Online" },
          "offers": {
            "@type": "Offer",
            "price": "45.00",
            "priceCurrency": "USD",
            "availability": "https://schema.org/InStock",
            "url": "https://www.example.com/tutors/math/book"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "How do I book a tutor?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Select a tutor profile and choose a time slot to book a session."
              }
            },
            {
              "@type": "Question",
              "name": "Can I reschedule?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Reschedule up to 24 hours before the session without a fee."
              }
            },
            {
              "@type": "Question",
              "name": "Are sessions online or in person?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Most tutors offer online sessions; some provide in-person options in select cities."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Tutors", "item": "https://www.example.com/tutors" },
            { "@type": "ListItem", "position": 3, "name": "Math", "item": "https://www.example.com/tutors/math" }
          ]
        }
      ]

      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

      Should I include multiple subjects?

      If multiple subjects are listed on the page, add one Service entry per subject with matching offers.

      Do I need one ItemList per filter?

      Use one ItemList per page view; filtered views should still map to the tutors shown.

      References