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 Repair Service Stack

      Device repair pages with LocalBusiness + Service context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Phone, tablet, or laptop repair landing pages
      • Local repair shops listing services and pricing
      • Pages where FAQs cover diagnostics, warranties, and turnaround times

      What's included

      • Local Business
        Open generator

        Anchors the repair shop identity, NAP, and service area.

      • Describes the device repair service and pricing.

      • Frequently Asked Questions
        Open generator

        Answers turnaround, warranty, and parts questions.

      • Breadcrumb
        Open generator

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

      address.addressCountry
      address.addressLocality
      address.addressRegion
      address.postalCode
      address.streetAddress
      areaServed.name
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      offers.price
      offers.priceCurrency
      provider.@id
      serviceType
      telephone
      url

      Recommended properties (stack union)

      description
      geo.latitude
      geo.longitude
      image
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      offers.availability
      offers.url
      priceRange
      serviceOutput

      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": "LocalBusiness",
          "@id": "https://www.example.com/repair#business",
          "name": "Northwind Device Repair",
          "url": "https://www.example.com/repair",
          "telephone": "+1-512-555-0168",
          "image": "https://www.example.com/images/device-repair.webp",
          "address": {
            "@type": "PostalAddress",
            "streetAddress": "4100 Burnet Rd",
            "addressLocality": "Austin",
            "addressRegion": "TX",
            "postalCode": "78756",
            "addressCountry": "US"
          },
          "priceRange": "$$"
        },
        {
          "@context": "https://schema.org",
          "@type": "Service",
          "@id": "https://www.example.com/repair#service",
          "name": "Same-Day Phone Screen Repair",
          "serviceType": "DeviceRepair",
          "description": "Screen repairs for iPhone and Android devices with OEM-grade parts.",
          "provider": { "@id": "https://www.example.com/repair#business" },
          "areaServed": { "@type": "AdministrativeArea", "name": "Austin" },
          "offers": {
            "@type": "Offer",
            "price": "149.00",
            "priceCurrency": "USD",
            "availability": "https://schema.org/InStock",
            "url": "https://www.example.com/repair#book"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "How long does a screen repair take?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Most repairs are completed in 1–2 hours depending on parts availability."
              }
            },
            {
              "@type": "Question",
              "name": "Do you offer a warranty?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. We provide a 90-day warranty on parts and labor."
              }
            },
            {
              "@type": "Question",
              "name": "Can I get a diagnostic first?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Walk-in diagnostics are available and credited toward repair if you proceed."
              }
            }
          ]
        },
        {
          "@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": "Device Repair", "item": "https://www.example.com/repair" }
          ]
        }
      ]

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

      Yes. Add one Service per device category (phone, tablet, laptop) with distinct @id values.

      How do I show tiered pricing?

      Use multiple Offer entries or include a visible price range with matching copy on the page.

      References