We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Device repair pages with LocalBusiness + Service context, FAQs, and breadcrumb navigation.
Anchors the repair shop identity, NAP, and service area.
Describes the device repair service and pricing.
Answers turnaround, warranty, and parts questions.
Provides navigation context for the repair page.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@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" }
]
}
]Yes. Add one Service per device category (phone, tablet, laptop) with distinct @id values.
Use multiple Offer entries or include a visible price range with matching copy on the page.