Insurance Quote Tool Stack
Insurance quote tool pages with WebApplication + Service context, FAQs, and breadcrumb navigation.
When to use this stack
- Insurance quote/price estimator tools for auto/home/health/life
- Lead-gen quote pages that embed a calculator or intake flow
- Pages where FAQs clarify eligibility, timing, and how quotes are honored
What is included
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.
Properties across the bundle
Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.
Required properties
- applicationCategory
- areaServed.name
- itemListElement[].name
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- operatingSystem
- provider.name
- url
Recommended properties
- description
- itemListElement[].item
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- offers.availability
- offers.price
- offers.priceCurrency
- offers.url
- serviceType
- softwareVersion
Combined JSON-LD
Paste this as one script tag, then replace every example value with data from the live 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" }
]
}
]Implement and verify
- 01
Start with the live page
Confirm titles, prices, availability, policies, and visible FAQ content before generating markup.
- 02
Add one JSON-LD script
Use the combined example as a template in the document head or before the closing body tag.
- 03
Complete regional details
Fill shipping destinations and timing for every region the page actually serves.
- 04
Link the return policy
Use a stable MerchantReturnPolicy URL and keep its terms synchronized with the page.
- 05
Match visible answers
Add only FAQs that users can read on the same page, with identical answers.
- 06
Validate after changes
Run Rich Results Test after implementation and whenever price, availability, or policy data changes.
Common errors and fixes
- Missing currency or availability
Use ISO currency codes and complete schema.org availability URLs in Offer data.
- Incomplete shipping details
Include shippingDestination.addressCountry and deliveryTime.transitTime with units.
- Return policy is not connected
Reference MerchantReturnPolicy from the Offer and provide a stable public policy URL.
- FAQ answers differ from the page
Keep structured FAQ answers identical to visible answers.
Stack FAQs
Do I need both WebApplication and Service?
Yes. The app represents the quote tool; Service anchors the insurance product and provider.
Should I include price in the Service offer?
If you show a starting price, include it. Otherwise keep price at 0.00 and focus on the quote flow URL.