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

      RV Rental Stack

      RV rental pages with Service + Vehicle context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • RV rental listings with availability and pricing
      • Fleet pages describing RV classes and amenities
      • Pages where FAQs clarify insurance, pickup, and mileage

      What's included

      • Defines the RV rental service, provider, and offer details.

      • Vehicle Listing
        Open generator

        Describes the RV being rented with key specs and identity.

      • Frequently Asked Questions
        Open generator

        Answers questions about deposits, insurance, and mileage limits.

      • Breadcrumb
        Open generator

        Provides navigation context for the rental 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`).

      areaServed.name
      brand.name
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      model
      name
      offers.price
      offers.priceCurrency
      provider.name
      serviceType
      url
      vehicleConfiguration

      Recommended properties (stack union)

      description
      image
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      numberOfForwardGears
      offers.availability
      offers.url
      serviceOutput
      vehicleEngine.engineType
      vehicleSeatingCapacity

      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/rv-rentals#service",
          "name": "RV Rentals",
          "serviceType": "RVRental",
          "description": "Class C RV rentals with delivery, insurance options, and 24/7 roadside support.",
          "provider": { "@type": "Organization", "name": "Northwind Outdoors" },
          "areaServed": { "@type": "AdministrativeArea", "name": "Texas" },
          "offers": {
            "@type": "Offer",
            "price": "189.00",
            "priceCurrency": "USD",
            "availability": "https://schema.org/InStock",
            "url": "https://www.example.com/rv-rentals/book"
          },
          "serviceOutput": "RV rental booking confirmation"
        },
        {
          "@context": "https://schema.org",
          "@type": "Vehicle",
          "@id": "https://www.example.com/rv-rentals/class-c#vehicle",
          "name": "Class C Explorer RV",
          "vehicleConfiguration": "Class C",
          "brand": { "@type": "Brand", "name": "Northwind" },
          "model": "Explorer C24",
          "url": "https://www.example.com/rv-rentals/class-c",
          "image": "https://www.example.com/images/class-c-rv.webp",
          "vehicleSeatingCapacity": 6
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Is insurance included?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Basic insurance is included; premium coverage and roadside assistance are optional add-ons."
              }
            },
            {
              "@type": "Question",
              "name": "What is the mileage policy?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Each rental includes 150 miles per day; additional miles are billed at checkout."
              }
            },
            {
              "@type": "Question",
              "name": "When is pickup and drop-off?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Pickup is at 10 AM and drop-off is by 5 PM unless you add flexible scheduling."
              }
            }
          ]
        },
        {
          "@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": "RV Rentals", "item": "https://www.example.com/rv-rentals" }
          ]
        }
      ]

      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 RV classes?

      If multiple classes are listed, add one Vehicle entry per class or link to dedicated vehicle pages.

      Do I need to show deposits?

      Yes. Include deposits and security holds in page copy and FAQs to match checkout policies.

      References