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

      Campus Housing Stack

      Campus housing pages with Place + Offer, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Residence hall or dormitory pages
      • Campus housing listings with pricing and amenities
      • Pages where FAQs clarify eligibility and lease terms

      What's included

      • Defines the residence hall location and address.

      • Represents housing offer details and application link.

      • Frequently Asked Questions
        Open generator

        Answers questions about eligibility, pricing, and move-in dates.

      • Breadcrumb
        Open generator

        Provides navigation context for the housing 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.streetAddress
      availability
      itemListElement[].name
      itemOffered.@id
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      price
      priceCurrency
      url

      Recommended properties (stack union)

      description
      eligibleRegion
      geo.latitude
      geo.longitude
      image
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      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/housing/oak-hall#place",
          "name": "Oak Hall Residence",
          "url": "https://www.example.com/housing/oak-hall",
          "image": "https://www.example.com/images/oak-hall.webp",
          "address": {
            "@type": "PostalAddress",
            "streetAddress": "100 Campus Dr",
            "addressLocality": "Madison",
            "addressRegion": "WI",
            "addressCountry": "US"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "Offer",
          "@id": "https://www.example.com/housing/oak-hall#offer",
          "name": "Oak Hall Double Room",
          "price": "6200.00",
          "priceCurrency": "USD",
          "availability": "https://schema.org/InStock",
          "url": "https://www.example.com/housing/oak-hall/apply",
          "itemOffered": { "@id": "https://www.example.com/housing/oak-hall#place" },
          "description": "Double room with shared bath and meal plan options.",
          "eligibleRegion": "US"
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Who is eligible for campus housing?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Housing is available to full-time undergraduate and graduate students."
              }
            },
            {
              "@type": "Question",
              "name": "Is a meal plan required?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "First-year students are required to select a meal plan. Upperclassmen can opt in."
              }
            },
            {
              "@type": "Question",
              "name": "When is move-in?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Move-in dates are published each August and vary by assignment."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Housing", "item": "https://www.example.com/housing" },
            { "@type": "ListItem", "position": 3, "name": "Oak Hall", "item": "https://www.example.com/housing/oak-hall" }
          ]
        }
      ]

      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 list multiple room types?

      If multiple room types are shown, add a separate Offer entry for each.

      Do I need to include lease terms?

      Include key lease terms in the page content and link to the full housing contract if available.

      References