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

      Contact / Location Stack

      Contact/location pages with contact page markup, org/local identity, FAQs, and breadcrumb context.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Contact/location pages with address, map, and hours
      • Branch pages where FAQs cover parking, hours, and appointments
      • Support contact hubs needing navigation clarity

      What's included

      Required properties (stack union)

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

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

      Recommended properties (stack union)

      description
      geo.latitude
      geo.longitude
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      openingHours

      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": "ContactPage",
          "@id": "https://www.example.com/contact#page",
          "name": "Contact Us",
          "url": "https://www.example.com/contact",
          "description": "Get in touch with our team or visit our office."
        },
        {
          "@context": "https://schema.org",
          "@type": "LocalBusiness",
          "@id": "https://www.example.com/contact#office",
          "name": "Northwind Analytics HQ",
          "url": "https://www.example.com/contact",
          "telephone": "+1-415-555-0000",
          "address": { "@type": "PostalAddress", "streetAddress": "200 Market St", "addressLocality": "San Francisco", "addressRegion": "CA", "postalCode": "94105", "addressCountry": "US" },
          "openingHours": "Mo-Fr 09:00-18:00",
          "geo": { "@type": "GeoCoordinates", "latitude": 37.792, "longitude": -122.395 }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            { "@type": "Question", "name": "Where do I park?", "acceptedAnswer": { "@type": "Answer", "text": "Validated parking is available in the Market Street Garage next door." } },
            { "@type": "Question", "name": "Do you accept walk-ins?", "acceptedAnswer": { "@type": "Answer", "text": "Visits are by appointment only. Please schedule ahead." } }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Contact", "item": "https://www.example.com/contact" }
          ]
        }
      ]

      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

      Can I use Organization instead of LocalBusiness?

      Yes. Use the type that matches the page. For branches, LocalBusiness is better; for HQ contact, Organization works.

      Should I include map coordinates?

      Recommended if you show a map; include latitude/longitude for clarity.

      References