We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Insurance quote tool pages with WebApplication + Service context, FAQs, and breadcrumb navigation.
Defines the quote tool itself with category and URL.
Captures the underlying insurance service and provider context.
Answers eligibility, timing, and quote validity questions.
Provides navigation context to the quote tool.
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": "WebApplication",
"@id": "https://www.example.com/insurance/auto/quote#app",
"name": "Auto Insurance Quote Tool",
"description": "Get an auto insurance quote in minutes based on your vehicle and driving history.",
"applicationCategory": "FinanceApplication",
"operatingSystem": "Any",
"url": "https://www.example.com/insurance/auto/quote",
"offers": {
"@type": "Offer",
"url": "https://www.example.com/insurance/auto"
}
},
{
"@context": "https://schema.org",
"@type": "Service",
"@id": "https://www.example.com/insurance/auto#service",
"name": "Auto Insurance",
"serviceType": "Auto Insurance",
"provider": { "@type": "Organization", "name": "Example Insurance" },
"areaServed": { "@type": "AdministrativeArea", "name": "US" },
"offers": {
"@type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0.00",
"priceCurrency": "USD",
"url": "https://www.example.com/insurance/auto"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How long is my quote valid?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Quotes are valid for 30 days unless your driving history or garaging address changes."
}
},
{
"@type": "Question",
"name": "Do you run a credit check?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We may run a soft credit inquiry in eligible states. It does not impact your credit score."
}
},
{
"@type": "Question",
"name": "Can I bind online?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most policies can be bound online. Some cases may require an agent call to finalize details."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Insurance", "item": "https://www.example.com/insurance" },
{ "@type": "ListItem", "position": 3, "name": "Auto Quote", "item": "https://www.example.com/insurance/auto/quote" }
]
}
]Yes. The app represents the quote tool; Service anchors the insurance product and provider.
If you show a starting price, include it. Otherwise keep price at 0.00 and focus on the quote flow URL.