RV Campground Directory Stack
Campground directory pages with CollectionPage + ItemList + Campground context, FAQs, and breadcrumbs.
When to use this stack
- RV park directory listings by region
- Campground marketplaces with filters and maps
- Directory pages highlighting amenities and booking links
What is included
Declares the directory landing page for campgrounds.
Lists campgrounds with names and URLs.
Provides details for a featured campground entry.
Answers booking, amenities, and policies questions.
Provides navigation context for the directory 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
- address.addressLocality
- address.addressRegion
- address.streetAddress
- description
- itemListElement[].name
- itemListElement[].url
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- url
Recommended properties
- geo.latitude
- geo.longitude
- hasPart.@id
- image
- inLanguage
- itemListElement[].item
- itemListOrder
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- numberOfItems
- telephone
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": "CollectionPage",
"@id": "https://www.example.com/rv/campgrounds#page",
"name": "Austin RV Campgrounds",
"description": "Browse RV parks and campgrounds near Austin with amenities and booking links.",
"url": "https://www.example.com/rv/campgrounds/austin",
"hasPart": [
{ "@id": "https://www.example.com/rv/campgrounds#list" }
]
},
{
"@context": "https://schema.org",
"@type": "ItemList",
"@id": "https://www.example.com/rv/campgrounds#list",
"name": "RV Campground Listings",
"itemListOrder": "https://schema.org/ItemListOrderAscending",
"numberOfItems": 3,
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Lakeside RV Park", "url": "https://www.example.com/rv/campgrounds/lakeside" },
{ "@type": "ListItem", "position": 2, "name": "Hill Country Camp", "url": "https://www.example.com/rv/campgrounds/hill-country" },
{ "@type": "ListItem", "position": 3, "name": "Barton Creek RV", "url": "https://www.example.com/rv/campgrounds/barton-creek" }
]
},
{
"@context": "https://schema.org",
"@type": "Campground",
"@id": "https://www.example.com/rv/campgrounds/lakeside#campground",
"name": "Lakeside RV Park",
"url": "https://www.example.com/rv/campgrounds/lakeside",
"telephone": "+1-512-555-0175",
"image": "https://www.example.com/images/lakeside-rv.webp",
"address": {
"@type": "PostalAddress",
"streetAddress": "2500 Lakeside Dr",
"addressLocality": "Austin",
"addressRegion": "TX",
"postalCode": "78741",
"addressCountry": "US"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 30.2307,
"longitude": -97.6997
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do listings include full hook-up sites?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Each listing notes electric, water, and sewer availability where offered."
}
},
{
"@type": "Question",
"name": "Can I filter by pet-friendly parks?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Use the filters to show only pet-friendly campgrounds."
}
},
{
"@type": "Question",
"name": "Do you offer real-time availability?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Availability is provided by each campground and may vary by season."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "RV Travel", "item": "https://www.example.com/rv" },
{ "@type": "ListItem", "position": 3, "name": "Campgrounds", "item": "https://www.example.com/rv/campgrounds" },
{ "@type": "ListItem", "position": 4, "name": "Austin", "item": "https://www.example.com/rv/campgrounds/austin" }
]
}
]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 add one Campground per listing?
Include Campground objects for featured or highlighted listings. Use ItemList for the full set.
How do I handle seasonal closures?
Note seasonal closures in page copy and keep listing availability aligned with visible info.