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

      Coworking Space Stack

      Coworking/location pages with Place + Offer context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Coworking location pages with amenities and pricing
      • Workspace landing pages with day pass or membership offers
      • Pages where FAQs clarify access, hours, and policies

      What's included

      • Anchors the coworking location, address, and contact details.

      • Describes the workspace offer (day pass or membership).

      • Frequently Asked Questions
        Open generator

        Answers questions about access, amenities, and guest policies.

      • Breadcrumb
        Open generator

        Provides navigation context to the location 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`).

      address.addressCountry
      address.addressLocality
      address.addressRegion
      address.postalCode
      address.streetAddress
      availability
      itemListElement[].name
      itemOffered.@id
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      price
      priceCurrency
      telephone
      url

      Recommended properties (stack union)

      category
      description
      geo.latitude
      geo.longitude
      image
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      openingHoursSpecification
      priceValidUntil

      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": "Place",
          "@id": "https://www.example.com/coworking/downtown#place",
          "name": "Northwind Coworking — Downtown",
          "url": "https://www.example.com/coworking/downtown",
          "telephone": "+1-512-555-0190",
          "image": "https://www.example.com/images/coworking-downtown.webp",
          "address": {
            "@type": "PostalAddress",
            "streetAddress": "500 Congress Ave",
            "addressLocality": "Austin",
            "addressRegion": "TX",
            "postalCode": "78701",
            "addressCountry": "US"
          },
          "openingHoursSpecification": [
            {
              "@type": "OpeningHoursSpecification",
              "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
              "opens": "08:00",
              "closes": "18:00"
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "Offer",
          "@id": "https://www.example.com/coworking/downtown#offer",
          "name": "Day Pass",
          "price": "35.00",
          "priceCurrency": "USD",
          "availability": "https://schema.org/InStock",
          "url": "https://www.example.com/coworking/downtown#book",
          "itemOffered": { "@id": "https://www.example.com/coworking/downtown#place" },
          "category": "CoworkingDayPass",
          "description": "Access to open seating, Wi-Fi, coffee bar, and phone booths."
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "What is included with a day pass?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Open seating, high-speed Wi-Fi, coffee/tea, and access to phone booths."
              }
            },
            {
              "@type": "Question",
              "name": "Can I bring a guest?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Guests are welcome with a guest pass. Please check in at the front desk."
              }
            },
            {
              "@type": "Question",
              "name": "Do you have meeting rooms?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Meeting rooms can be booked by the hour through the member portal."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Coworking", "item": "https://www.example.com/coworking" },
            { "@type": "ListItem", "position": 3, "name": "Downtown", "item": "https://www.example.com/coworking/downtown" }
          ]
        }
      ]

      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 list multiple membership tiers?

      Yes. Use one Offer per tier with unique @id values and URLs aligned to the visible pricing table.

      What if pricing changes frequently?

      Use priceValidUntil and keep the Offer aligned with the current price shown on the page.

      References