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

      Peer-to-Peer Rental Stack

      Peer-to-peer rental pages with Service and Offer context, FAQs, and breadcrumbs.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Peer-to-peer gear rental listings
      • Space or equipment rental marketplaces
      • Rental landing pages with pricing and availability

      What's included

      • Describes the rental service and provider.

      • Captures the rental price, availability, and booking link.

      • Frequently Asked Questions
        Open generator

        Answers deposit, pickup, and insurance questions.

      • Breadcrumb
        Open generator

        Provides navigation context for the rental listing.

      Required properties (stack union)

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

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

      Recommended properties (stack union)

      category
      description
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      offers.price
      offers.priceCurrency
      offers.url
      priceSpecification.price
      priceSpecification.priceCurrency

      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": "Service",
          "@id": "https://www.example.com/rentals/camera#service",
          "name": "Camera Rental Service",
          "serviceType": "PeerToPeerRental",
          "provider": { "@type": "Organization", "name": "ShareGear" },
          "areaServed": { "@type": "City", "name": "Austin" },
          "description": "Rent professional cameras from local owners with flexible pickup times."
        },
        {
          "@context": "https://schema.org",
          "@type": "Offer",
          "@id": "https://www.example.com/rentals/camera#offer",
          "name": "Canon EOS R5 Daily Rental",
          "description": "Body-only rental with two batteries and charger.",
          "price": "45.00",
          "priceCurrency": "USD",
          "availability": "https://schema.org/InStock",
          "url": "https://www.example.com/rentals/camera#book",
          "priceSpecification": {
            "@type": "UnitPriceSpecification",
            "price": "45.00",
            "priceCurrency": "USD",
            "unitText": "per day"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Is insurance included?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Optional damage protection is available at checkout."
              }
            },
            {
              "@type": "Question",
              "name": "How does pickup work?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Coordinate pickup with the owner or select courier delivery during booking."
              }
            },
            {
              "@type": "Question",
              "name": "Is a deposit required?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "A refundable security deposit may be placed on your card depending on the item."
              }
            }
          ]
        },
        {
          "@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": "Camera Rental", "item": "https://www.example.com/rentals/camera" }
          ]
        }
      ]

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

      If the page lists multiple items, add one Offer per item with unique URLs.

      How do I show hourly rentals?

      Use a UnitPriceSpecification with unitText set to per hour and keep prices aligned with the listing.

      References