Schema stack

    Escrow Service Stack

    Escrow service pages with Organization and Service context, FAQs, and breadcrumbs.

    Included schema
    Organization
    Service
    Frequently Asked Questions
    Breadcrumb
    Fit

    When to use this stack

    • Escrow service landing pages for high-value transactions
    • Marketplace escrow service descriptions
    • Real estate or online escrow service detail pages
    Composition

    What is included

    Data contract

    Properties across the bundle

    Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.

    Required properties

    • areaServed.name
    • itemListElement[].name
    • mainEntity[].@type=Question
    • mainEntity[].acceptedAnswer.text
    • name
    • provider.@id
    • serviceType
    • url

    Recommended properties

    • address
    • contactPoint
    • description
    • itemListElement[].item
    • legalName
    • mainEntity[].acceptedAnswer.text
    • mainEntity[].author.name
    • mainEntity[].name
    • offers.price
    • offers.priceCurrency
    • offers.url
    Copy-ready example

    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": "Organization",
        "@id": "https://www.example.com/escrow#org",
        "name": "Northwind Escrow Services",
        "url": "https://www.example.com/escrow",
        "contactPoint": {
          "@type": "ContactPoint",
          "contactType": "Customer Support",
          "email": "support@example.com"
        }
      },
      {
        "@context": "https://schema.org",
        "@type": "Service",
        "@id": "https://www.example.com/escrow#service",
        "name": "Online Escrow Service",
        "serviceType": "EscrowService",
        "provider": { "@id": "https://www.example.com/escrow#org" },
        "areaServed": { "@type": "Country", "name": "United States" },
        "description": "Secure escrow for online transactions with milestone-based releases."
      },
      {
        "@context": "https://schema.org",
        "@type": "FAQPage",
        "mainEntity": [
          {
            "@type": "Question",
            "name": "What transactions do you support?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "We support online marketplaces, services, and digital goods transactions."
            }
          },
          {
            "@type": "Question",
            "name": "How long does escrow take?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Funds are released once buyer approval is confirmed or milestones are completed."
            }
          },
          {
            "@type": "Question",
            "name": "Are funds insured?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Funds are held in segregated accounts and protected by standard escrow safeguards."
            }
          }
        ]
      },
      {
        "@context": "https://schema.org",
        "@type": "BreadcrumbList",
        "itemListElement": [
          { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
          { "@type": "ListItem", "position": 2, "name": "Escrow", "item": "https://www.example.com/escrow" },
          { "@type": "ListItem", "position": 3, "name": "Services", "item": "https://www.example.com/escrow#service" }
        ]
      }
    ]
    Workflow

    Implement and verify

    1. 01

      Start with the live page

      Confirm titles, prices, availability, policies, and visible FAQ content before generating markup.

    2. 02

      Add one JSON-LD script

      Use the combined example as a template in the document head or before the closing body tag.

    3. 03

      Complete regional details

      Fill shipping destinations and timing for every region the page actually serves.

    4. 04

      Link the return policy

      Use a stable MerchantReturnPolicy URL and keep its terms synchronized with the page.

    5. 05

      Match visible answers

      Add only FAQs that users can read on the same page, with identical answers.

    6. 06

      Validate after changes

      Run Rich Results Test after implementation and whenever price, availability, or policy data changes.

    Quality check

    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.

    Questions

    Stack FAQs

    Should I list transaction limits?

    If limits are shown, include them in FAQ answers or the Service description.

    How do I show fee tiers?

    Add Offer entries with clear pricing tiers and match the displayed fee schedule.

    Primary sources

    References