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

      Rental Application Stack

      Rental application/tenant screening pages with WebPage + Offer context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Rental application portals for properties or property managers
      • Tenant screening pages that need clear offer/terms alignment
      • Pages where FAQs clarify fees, timelines, and required documents

      What's included

      • Declares the page as the rental application portal.

      • Expresses the application offer/fee and destination URL.

      • Frequently Asked Questions
        Open generator

        Answers eligibility, fee, and turnaround questions.

      • Breadcrumb
        Open generator

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

      availability
      description
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      price
      priceCurrency
      url

      Recommended properties (stack union)

      category
      dateModified
      inLanguage
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      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": "WebPage",
          "@id": "https://www.example.com/rentals/apply#page",
          "name": "Rental Application — Oakwood Apartments",
          "description": "Apply online for Oakwood Apartments. Submit screening details and pay the application fee.",
          "url": "https://www.example.com/rentals/apply",
          "inLanguage": "en",
          "dateModified": "2025-02-20"
        },
        {
          "@context": "https://schema.org",
          "@type": "Offer",
          "@id": "https://www.example.com/rentals/apply#offer",
          "name": "Rental Application Fee",
          "price": "45.00",
          "priceCurrency": "USD",
          "availability": "https://schema.org/InStock",
          "url": "https://www.example.com/rentals/apply#start",
          "category": "RentalApplication",
          "priceValidUntil": "2025-12-31"
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "What documents are required?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Government ID, proof of income, rental history, and references."
              }
            },
            {
              "@type": "Question",
              "name": "How long does screening take?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Most applications are processed within 2-3 business days."
              }
            },
            {
              "@type": "Question",
              "name": "Is the fee refundable?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Application fees are non-refundable once submitted. Contact support if you applied in error."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Rentals", "item": "https://www.example.com/rentals" },
            { "@type": "ListItem", "position": 3, "name": "Apply", "item": "https://www.example.com/rentals/apply" }
          ]
        }
      ]

      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 show multiple offers?

      If you present multiple application types (e.g., individual vs. joint), include one Offer per visible option with distinct URLs.

      Can I omit price?

      If the fee is waived or not shown, keep price at 0.00 and align availability and URL with the visible state.

      References