We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Online legal intake/consult forms with Service + WebApplication context, FAQs, and breadcrumb navigation.
Captures the legal service being requested via the intake form.
Defines the intake form experience as an online application.
Answers questions about timelines, eligibility, and confidentiality.
Provides navigation context to the intake form 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/legal/family-law#service",
"name": "Family Law Consultation",
"serviceType": "Family Law",
"provider": { "@type": "LegalService", "name": "Northwind Legal Group" },
"areaServed": { "@type": "AdministrativeArea", "name": "California" },
"offers": {
"@type": "Offer",
"price": "0.00",
"priceCurrency": "USD",
"url": "https://www.example.com/legal/family-law/intake"
}
},
{
"@context": "https://schema.org",
"@type": "WebApplication",
"@id": "https://www.example.com/legal/family-law/intake#app",
"name": "Family Law Intake Form",
"description": "Secure intake form to request a family law consultation.",
"applicationCategory": "BusinessApplication",
"operatingSystem": "Any",
"url": "https://www.example.com/legal/family-law/intake",
"offers": {
"@type": "Offer",
"url": "https://www.example.com/legal/family-law/intake"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How soon will I hear back?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We respond within 1 business day with next steps and scheduling options."
}
},
{
"@type": "Question",
"name": "Is my information confidential?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. All intake submissions are handled securely and reviewed only by our legal team."
}
},
{
"@type": "Question",
"name": "Do you handle cases outside California?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We currently serve clients in California. For other states, we can provide referrals."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Legal Services", "item": "https://www.example.com/legal" },
{ "@type": "ListItem", "position": 3, "name": "Family Law Intake", "item": "https://www.example.com/legal/family-law/intake" }
]
}
]Yes. Use one Service for each practice area or intake page so the context stays accurate.
Yes. Use the WebApplication URL for the form and keep the Service URL aligned to the main site.