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

      Device Protection Plan Stack

      Device protection plan pages with Product + Offer + MerchantReturnPolicy, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Extended warranty or protection plan pages
      • Device protection add-on checkout pages
      • Pages where FAQs clarify coverage, claims, and exclusions

      What's included

      • Represents the protection plan product with coverage details.

      • Describes the protection plan pricing and purchase URL.

      • Merchant Return Policy
        Open generator

        Clarifies cancellation and refund terms for the protection plan.

      • Frequently Asked Questions
        Open generator

        Answers questions about coverage, claims, and exclusions.

      • Breadcrumb
        Open generator

        Provides navigation context for the protection plan 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
      itemOffered.@id
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      offers.availability
      offers.price
      offers.priceCurrency
      offers.url
      price
      priceCurrency
      returnFees
      returnMethod
      returnPolicyCategory
      url

      Recommended properties (stack union)

      applicableCountry
      brand.name
      category
      description
      eligibleRegion
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      merchantReturnDays
      priceValidUntil
      restockingFee
      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/protection/phone-plan#product",
          "name": "Phone Protection Plan",
          "description": "Accidental damage coverage with next-day replacement and unlimited claims.",
          "image": "https://www.example.com/images/phone-plan.webp",
          "brand": { "@type": "Brand", "name": "Northwind Care" },
          "sku": "NW-CARE-PHONE-24",
          "category": "DeviceProtection",
          "offers": {
            "@type": "Offer",
            "@id": "https://www.example.com/protection/phone-plan#offer",
            "price": "12.99",
            "priceCurrency": "USD",
            "availability": "https://schema.org/InStock",
            "url": "https://www.example.com/protection/phone-plan/checkout"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "Offer",
          "@id": "https://www.example.com/protection/phone-plan#offer",
          "name": "Phone Protection Plan — Monthly",
          "price": "12.99",
          "priceCurrency": "USD",
          "availability": "https://schema.org/InStock",
          "url": "https://www.example.com/protection/phone-plan/checkout",
          "itemOffered": { "@id": "https://www.example.com/protection/phone-plan#product" },
          "eligibleRegion": "US",
          "description": "Monthly coverage with next-day replacements and accidental damage protection."
        },
        {
          "@context": "https://schema.org",
          "@type": "MerchantReturnPolicy",
          "@id": "https://www.example.com/protection/phone-plan#policy",
          "name": "Protection Plan Cancellation Policy",
          "url": "https://www.example.com/protection/phone-plan",
          "returnPolicyCategory": "https://schema.org/MerchantReturnFiniteReturnWindow",
          "merchantReturnDays": 30,
          "returnMethod": "https://schema.org/ReturnByMail",
          "returnFees": "https://schema.org/FreeReturn",
          "applicableCountry": "US"
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "What does the plan cover?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "The plan covers accidental damage, screen repairs, and replacement for eligible devices."
              }
            },
            {
              "@type": "Question",
              "name": "How do I file a claim?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Submit a claim in the customer portal and follow the shipping instructions provided."
              }
            },
            {
              "@type": "Question",
              "name": "Can I cancel anytime?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Cancel within 30 days for a full refund; after that, coverage ends at the next billing cycle."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Protection Plans", "item": "https://www.example.com/protection" },
            { "@type": "ListItem", "position": 3, "name": "Phone Protection Plan", "item": "https://www.example.com/protection/phone-plan" }
          ]
        }
      ]

      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 list multiple coverage tiers?

      If you have tiers (basic vs premium), add separate Offer entries with prices and coverage details.

      Do I need a MerchantReturnPolicy?

      Yes. Use MerchantReturnPolicy to describe cancellation windows and refund rules for the plan.

      References