Cookies & analytics

    We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.

    SwiftSchema Logo

    SwiftSchema

    Intuitive Schema Generation at Your Fingertips

    AboutLearnContact
      Stack

      Legal Intake Form Stack

      Online legal intake/consult forms with Service + WebApplication context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Law firm intake forms for new clients
      • Consultation request pages tied to legal services
      • Pages where FAQs clarify next steps and response times

      What's included

      • Captures the legal service being requested via the intake form.

      • Web Application
        Open generator

        Defines the intake form experience as an online application.

      • Frequently Asked Questions
        Open generator

        Answers questions about timelines, eligibility, and confidentiality.

      • Breadcrumb
        Open generator

        Provides navigation context to the intake form page.

      Required properties (stack union)

      Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).

      applicationCategory
      areaServed.name
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      operatingSystem
      provider.name
      url

      Recommended properties (stack union)

      description
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      offers.price
      offers.priceCurrency
      offers.url
      serviceType
      softwareVersion

      Combined JSON-LD

      Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.

      Validate
      [
        {
          "@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" }
          ]
        }
      ]

      Implementation steps

      1. Start from your live product detail page content; ensure titles, prices, and availability match the page.
      2. Embed one JSON-LD script in the head or just before the closing body tag using the combined example as a template.
      3. Fill shipping details for each region you serve and keep them aligned with on-page shipping tables.
      4. Attach your canonical MerchantReturnPolicy URL and keep the policy text in sync with Merchant Center.
      5. Add 3–6 FAQs that address purchase blockers (shipping, returns, compatibility) and keep answers consistent with visible content.
      6. Validate in the Rich Results Test and revalidate after price/availability/policy changes.

      Common errors and fixes

      FAQs

      Should I include one Service per practice area?

      Yes. Use one Service for each practice area or intake page so the context stays accurate.

      Can the intake form live on a separate domain?

      Yes. Use the WebApplication URL for the form and keep the Service URL aligned to the main site.

      References