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

      Warranty / Coverage Stack

      Warranty/coverage pages pairing a Product with a coverage Offer, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Warranty/extended coverage detail pages for products or services
      • Coverage plan pages that need clear price, availability, and terms
      • Pages where FAQs explain eligibility, claims, and transferability

      What's included

      • Represents the covered product or the warranty plan SKU itself.

      • Expresses the warranty/coverage terms and purchase URL.

      • Frequently Asked Questions
        Open generator

        Answers eligibility, claim process, and transferability questions.

      • Breadcrumb
        Open generator

        Provides navigation context to the warranty 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`).

      availability
      description
      image
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      price
      priceCurrency
      url

      Recommended properties (stack union)

      brand.name
      category
      gtin13
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      model
      name
      priceValidUntil
      seller.name
      sku
      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": "Product",
          "@id": "https://www.example.com/products/ultra-laptop#warranty",
          "name": "Ultra Laptop Extended Warranty",
          "description": "3-year extended coverage for the Ultra Laptop including accidental damage and battery replacement.",
          "image": "https://www.example.com/images/ultra-laptop-warranty.webp",
          "brand": { "@type": "Brand", "name": "Example Devices" },
          "sku": "ULTRA-WAR-3YR",
          "model": "Ultra Laptop",
          "url": "https://www.example.com/products/ultra-laptop/warranty"
        },
        {
          "@context": "https://schema.org",
          "@type": "Offer",
          "@id": "https://www.example.com/products/ultra-laptop#warranty-offer",
          "name": "3-Year Extended Warranty",
          "category": "Warranty",
          "price": "149.00",
          "priceCurrency": "USD",
          "availability": "https://schema.org/InStock",
          "url": "https://www.example.com/products/ultra-laptop/warranty#purchase",
          "priceValidUntil": "2026-12-31",
          "seller": { "@type": "Organization", "name": "Example Devices" }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "What does the warranty cover?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "It covers defects, accidental damage, and one battery replacement during the term."
              }
            },
            {
              "@type": "Question",
              "name": "How do I file a claim?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Submit a claim in your account with the device serial number and incident details. We respond within two business days."
              }
            },
            {
              "@type": "Question",
              "name": "Can I transfer coverage?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Coverage can be transferred once to a new owner with proof of purchase."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Products", "item": "https://www.example.com/products" },
            { "@type": "ListItem", "position": 3, "name": "Ultra Laptop", "item": "https://www.example.com/products/ultra-laptop" },
            { "@type": "ListItem", "position": 4, "name": "Extended Warranty", "item": "https://www.example.com/products/ultra-laptop/warranty" }
          ]
        }
      ]

      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 show multiple offers?

      Yes, if multiple terms/tiers are visible. Include one Offer per tier with price and URL aligned to the page.

      Do I need a separate Product for the device?

      If the device is also on the page, you can include the device Product as well; keep this Product focused on the warranty SKU.

      References