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

      Appointment Booking Stack

      Booking pages with Service + WebApplication context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Appointment booking pages with embedded schedulers
      • Service pages where scheduling is the primary CTA
      • Pages where FAQs clarify availability and cancellations

      What's included

      • Captures the service being booked and provider details.

      • Web Application
        Open generator

        Defines the booking widget or scheduling app.

      • Frequently Asked Questions
        Open generator

        Answers booking, rescheduling, and cancellation questions.

      • Breadcrumb
        Open generator

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

      applicationCategory
      areaServed.name
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      operatingSystem
      provider.name
      url

      Recommended properties (stack union)

      description
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      offers.price
      offers.priceCurrency
      offers.url
      serviceType
      softwareVersion

      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": "Service",
          "@id": "https://www.example.com/services/consulting#service",
          "name": "Strategy Consultation",
          "serviceType": "Business Consulting",
          "provider": { "@type": "Organization", "name": "Example Advisors" },
          "areaServed": { "@type": "AdministrativeArea", "name": "US" },
          "offers": {
            "@type": "Offer",
            "price": "0.00",
            "priceCurrency": "USD",
            "url": "https://www.example.com/services/consulting/book"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "WebApplication",
          "@id": "https://www.example.com/services/consulting/book#app",
          "name": "Consultation Scheduler",
          "description": "Book a 30-minute strategy consultation with our team.",
          "applicationCategory": "BusinessApplication",
          "operatingSystem": "Any",
          "url": "https://www.example.com/services/consulting/book",
          "offers": {
            "@type": "Offer",
            "url": "https://www.example.com/services/consulting/book"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "How do I reschedule?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Use the confirmation email link to reschedule up to 24 hours in advance."
              }
            },
            {
              "@type": "Question",
              "name": "What is your cancellation policy?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Cancellations within 12 hours may incur a fee. See full policy on the booking page."
              }
            },
            {
              "@type": "Question",
              "name": "Do you offer virtual appointments?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Virtual appointments are available for all consultation types."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Services", "item": "https://www.example.com/services" },
            { "@type": "ListItem", "position": 3, "name": "Book Consultation", "item": "https://www.example.com/services/consulting/book" }
          ]
        }
      ]

      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 service types?

      If multiple services are bookable on one page, add a Service entry for each.

      Can I link to third-party scheduling?

      Yes. Keep the WebApplication URL on the booking page and include the scheduler link in offers.url.

      References