We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Pet boarding marketplaces with CollectionPage + ItemList + LocalBusiness context, FAQs, and breadcrumbs.
Declares the marketplace directory landing page.
Lists pet boarding providers with names and URLs.
Provides details for a featured boarding provider.
Answers booking, policies, and pet requirements questions.
Provides navigation context for the marketplace page.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "CollectionPage",
"@id": "https://www.example.com/pets/boarding#page",
"name": "Austin Pet Boarding",
"description": "Find trusted pet boarding providers in Austin with pricing and availability.",
"url": "https://www.example.com/pets/boarding/austin",
"hasPart": [
{ "@id": "https://www.example.com/pets/boarding#list" }
]
},
{
"@context": "https://schema.org",
"@type": "ItemList",
"@id": "https://www.example.com/pets/boarding#list",
"name": "Pet Boarding Providers",
"itemListOrder": "https://schema.org/ItemListOrderAscending",
"numberOfItems": 3,
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Paws & Stay Boarding", "url": "https://www.example.com/pets/boarding/paws-stay" },
{ "@type": "ListItem", "position": 2, "name": "Barton Creek Pet Lodge", "url": "https://www.example.com/pets/boarding/barton-creek" },
{ "@type": "ListItem", "position": 3, "name": "Happy Tails Boarding", "url": "https://www.example.com/pets/boarding/happy-tails" }
]
},
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"@id": "https://www.example.com/pets/boarding/paws-stay#business",
"name": "Paws & Stay Boarding",
"url": "https://www.example.com/pets/boarding/paws-stay",
"telephone": "+1-512-555-0151",
"image": "https://www.example.com/images/paws-stay.webp",
"address": {
"@type": "PostalAddress",
"streetAddress": "900 Pet Lane",
"addressLocality": "Austin",
"addressRegion": "TX",
"postalCode": "78702",
"addressCountry": "US"
},
"priceRange": "$$",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.8",
"reviewCount": "128"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do providers require vaccinations?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Most providers require up-to-date rabies and distemper vaccinations."
}
},
{
"@type": "Question",
"name": "Are there overnight staff?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Many facilities offer overnight monitoring; check each listing for details."
}
},
{
"@type": "Question",
"name": "Can I tour the facility first?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Most providers offer scheduled tours or virtual walk-throughs."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Pets", "item": "https://www.example.com/pets" },
{ "@type": "ListItem", "position": 3, "name": "Boarding", "item": "https://www.example.com/pets/boarding" },
{ "@type": "ListItem", "position": 4, "name": "Austin", "item": "https://www.example.com/pets/boarding/austin" }
]
}
]Include LocalBusiness entries for featured providers and list the rest in ItemList.
Use priceRange on each provider and explain pricing tiers in page copy.