We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Reseller locator pages with ItemList + LocalBusiness entries, FAQs, and breadcrumbs.
Represents the list of partners or resellers.
Describes each partner/reseller location and contact details.
Answers eligibility, coverage, and appointment questions.
Provides navigation context for the locator 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": "ItemList",
"@id": "https://www.example.com/partners#list",
"name": "Reseller Locator",
"url": "https://www.example.com/partners",
"numberOfItems": 2,
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": { "@id": "https://www.example.com/partners#reseller-1" }
},
{
"@type": "ListItem",
"position": 2,
"item": { "@id": "https://www.example.com/partners#reseller-2" }
}
]
},
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"@id": "https://www.example.com/partners#reseller-1",
"name": "Austin Tech Reseller",
"telephone": "+1-512-555-0182",
"address": {
"@type": "PostalAddress",
"streetAddress": "200 Congress Ave",
"addressLocality": "Austin",
"addressRegion": "TX",
"postalCode": "78701",
"addressCountry": "US"
},
"openingHours": "Mo-Fr 09:00-17:00"
},
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"@id": "https://www.example.com/partners#reseller-2",
"name": "Dallas Systems Partner",
"telephone": "+1-214-555-0144",
"address": {
"@type": "PostalAddress",
"streetAddress": "500 Elm St",
"addressLocality": "Dallas",
"addressRegion": "TX",
"postalCode": "75202",
"addressCountry": "US"
},
"openingHours": "Mo-Fr 08:30-17:30"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How do I find a local reseller?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Search by region to see authorized resellers near you."
}
},
{
"@type": "Question",
"name": "Are all partners authorized?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. All listed partners are verified and authorized."
}
},
{
"@type": "Question",
"name": "Can I book an appointment?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Contact the reseller directly to schedule a consultation or demo."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Partners", "item": "https://www.example.com/partners" }
]
}
]Include one LocalBusiness per location shown on the page and keep the ItemList order aligned.
Add coverage details in the LocalBusiness description or FAQ answers if the page lists regions.