RV Rental Stack
RV rental pages with Service + Vehicle context, FAQs, and breadcrumb navigation.
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 is included
Defines the RV rental service, provider, and offer details.
Describes the RV being rented with key specs and identity.
Answers questions about deposits, insurance, and mileage limits.
Provides navigation context for the rental page.
Properties across the bundle
Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.
Required properties
- 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
- 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 this as one script tag, then replace every example value with data from the live page.
[
{
"@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" }
]
}
]Implement and verify
- 01
Start with the live page
Confirm titles, prices, availability, policies, and visible FAQ content before generating markup.
- 02
Add one JSON-LD script
Use the combined example as a template in the document head or before the closing body tag.
- 03
Complete regional details
Fill shipping destinations and timing for every region the page actually serves.
- 04
Link the return policy
Use a stable MerchantReturnPolicy URL and keep its terms synchronized with the page.
- 05
Match visible answers
Add only FAQs that users can read on the same page, with identical answers.
- 06
Validate after changes
Run Rich Results Test after implementation and whenever price, availability, or policy data changes.
Common errors and fixes
- Missing currency or availability
Use ISO currency codes and complete schema.org availability URLs in Offer data.
- Incomplete shipping details
Include shippingDestination.addressCountry and deliveryTime.transitTime with units.
- Return policy is not connected
Reference MerchantReturnPolicy from the Offer and provide a stable public policy URL.
- FAQ answers differ from the page
Keep structured FAQ answers identical to visible answers.
Stack 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.