Schema stack

    Directory / Listings Stack

    Directory pages listing local businesses with ItemList, FAQ, and breadcrumb context.

    Included schema
    Item List
    Local Business
    Frequently Asked Questions
    Breadcrumb
    Fit

    When to use this stack

    • City/vertical directories listing multiple businesses or partners
    • Franchise or partner lists needing structured listings
    • Pages where FAQs clarify selection, coverage, and booking
    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

    • address.addressCountry
    • address.addressLocality
    • address.addressRegion
    • address.streetAddress
    • itemListElement[].item.@id
    • itemListElement[].name
    • itemListElement[].position
    • mainEntity[].@type=Question
    • mainEntity[].acceptedAnswer.text
    • name
    • telephone
    • url

    Recommended properties

    • image
    • itemListElement[].item
    • itemListElement[].name
    • itemListOrder
    • mainEntity[].acceptedAnswer.text
    • mainEntity[].author.name
    • mainEntity[].name
    • numberOfItems
    • openingHours
    • priceRange
    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": "ItemList",
        "@id": "https://www.example.com/directory/austin-plumbers#list",
        "itemListOrder": "https://schema.org/ItemListOrderAscending",
        "numberOfItems": 2,
        "itemListElement": [
          { "@type": "ListItem", "position": 1, "name": "RapidRooter Plumbing", "item": { "@id": "https://www.example.com/partners/rapidrooter#business" }, "url": "https://www.example.com/partners/rapidrooter" },
          { "@type": "ListItem", "position": 2, "name": "BlueSky Plumbing", "item": { "@id": "https://www.example.com/partners/bluesky#business" }, "url": "https://www.example.com/partners/bluesky" }
        ]
      },
      {
        "@context": "https://schema.org",
        "@type": "LocalBusiness",
        "@id": "https://www.example.com/partners/rapidrooter#business",
        "name": "RapidRooter Plumbing",
        "url": "https://www.example.com/partners/rapidrooter",
        "telephone": "+1-512-555-1212",
        "address": { "@type": "PostalAddress", "streetAddress": "123 Main St", "addressLocality": "Austin", "addressRegion": "TX", "postalCode": "78701", "addressCountry": "US" },
        "openingHours": "Mo-Su 07:00-19:00",
        "priceRange": "$$"
      },
      {
        "@context": "https://schema.org",
        "@type": "FAQPage",
        "mainEntity": [
          { "@type": "Question", "name": "How do you vet partners?", "acceptedAnswer": { "@type": "Answer", "text": "We verify licensing, insurance, and review history before listing." } },
          { "@type": "Question", "name": "Do you cover the entire metro?", "acceptedAnswer": { "@type": "Answer", "text": "Yes, all Austin ZIP codes. Check each partner page for service areas." } }
        ]
      },
      {
        "@context": "https://schema.org",
        "@type": "BreadcrumbList",
        "itemListElement": [
          { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
          { "@type": "ListItem", "position": 2, "name": "Directory", "item": "https://www.example.com/directory" },
          { "@type": "ListItem", "position": 3, "name": "Austin Plumbers", "item": "https://www.example.com/directory/austin-plumbers" }
        ]
      }
    ]
    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

    Can I list multiple LocalBusiness objects?

    Yes. Include each business you show on the page with unique @id/URL.

    Do I need reviews?

    Optional. Link to review content on each business page if present; keep directory focused on listings.

    Primary sources

    References