We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Claims intake portals with Service + WebApplication context, FAQs, and breadcrumb navigation.
Defines the insurance service associated with the claim.
Describes the online claims submission app.
Answers claim eligibility, documentation, and processing questions.
Provides navigation context for the claims 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": "Service",
"@id": "https://www.example.com/insurance/auto#service",
"name": "Auto Insurance Claims",
"serviceType": "Auto Insurance",
"provider": { "@type": "Organization", "name": "Example Insurance Co." },
"areaServed": { "@type": "AdministrativeArea", "name": "US" },
"offers": {
"@type": "Offer",
"price": "0.00",
"priceCurrency": "USD",
"url": "https://www.example.com/insurance/auto/claims"
}
},
{
"@context": "https://schema.org",
"@type": "WebApplication",
"@id": "https://www.example.com/insurance/auto/claims#app",
"name": "Auto Claim Submission Portal",
"description": "Submit and track auto insurance claims online.",
"applicationCategory": "FinanceApplication",
"operatingSystem": "Any",
"url": "https://www.example.com/insurance/auto/claims",
"offers": {
"@type": "Offer",
"url": "https://www.example.com/insurance/auto/claims"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What documents do I need?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Provide photos of the damage, a police report if applicable, and your policy number."
}
},
{
"@type": "Question",
"name": "How long does processing take?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most claims are reviewed within 3-5 business days after submission."
}
},
{
"@type": "Question",
"name": "Can I update my claim later?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. You can upload additional documents from your claim dashboard."
}
}
]
},
{
"@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": "Submit Claim", "item": "https://www.example.com/insurance/auto/claims" }
]
}
]If the page supports multiple claim types, add a Service entry for each line of coverage.
Yes. Keep the WebApplication URL on your page and link out in offers.url if needed.