Schema stack

    Warranty / Coverage Stack

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

    Included schema
    Product
    Offer
    Frequently Asked Questions
    Breadcrumb
    Fit

    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
    Composition

    What is included

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

    • Expresses the warranty/coverage terms and purchase URL.

    • Answers eligibility, claim process, and transferability questions.

    • Provides navigation context to the warranty page.

    Data contract

    Properties across the bundle

    Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.

    Required properties

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

    Recommended properties

    • brand.name
    • category
    • gtin13
    • itemListElement[].item
    • mainEntity[].acceptedAnswer.text
    • mainEntity[].author.name
    • mainEntity[].name
    • model
    • name
    • priceValidUntil
    • seller.name
    • sku
    • url
    Copy-ready example

    Combined JSON-LD

    Paste this as one script tag, then replace every example value with data from the live page.

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

    Implement and verify

    1. 01

      Start with the live page

      Confirm titles, prices, availability, policies, and visible FAQ content before generating markup.

    2. 02

      Add one JSON-LD script

      Use the combined example as a template in the document head or before the closing body tag.

    3. 03

      Complete regional details

      Fill shipping destinations and timing for every region the page actually serves.

    4. 04

      Link the return policy

      Use a stable MerchantReturnPolicy URL and keep its terms synchronized with the page.

    5. 05

      Match visible answers

      Add only FAQs that users can read on the same page, with identical answers.

    6. 06

      Validate after changes

      Run Rich Results Test after implementation and whenever price, availability, or policy data changes.

    Quality check

    Common errors and fixes

    • Missing currency or availability

      Use ISO currency codes and complete schema.org availability URLs in Offer data.

    • Incomplete shipping details

      Include shippingDestination.addressCountry and deliveryTime.transitTime with units.

    • Return policy is not connected

      Reference MerchantReturnPolicy from the Offer and provide a stable public policy URL.

    • FAQ answers differ from the page

      Keep structured FAQ answers identical to visible answers.

    Questions

    Stack 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.

    Primary sources

    References