We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Pet adoption event/pages with Event + Organization context, FAQs, and breadcrumb navigation.
Defines the adoption event details, timing, and location.
Represents the shelter or rescue hosting the adoption.
Answers questions about fees, requirements, and process.
Provides navigation context to the adoption 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": "Organization",
"@id": "https://www.example.com/adopt#org",
"name": "Paws & Co. Rescue",
"url": "https://www.example.com/adopt",
"logo": "https://www.example.com/assets/logo.svg",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-512-555-0177",
"contactType": "Adoptions"
}
},
{
"@context": "https://schema.org",
"@type": "Event",
"@id": "https://www.example.com/adopt/spring-event#event",
"name": "Spring Adoption Event",
"startDate": "2025-05-04T11:00:00-05:00",
"endDate": "2025-05-04T15:00:00-05:00",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"url": "https://www.example.com/adopt/spring-event",
"location": {
"@type": "Place",
"name": "Paws & Co. Adoption Center",
"address": {
"@type": "PostalAddress",
"streetAddress": "200 Shelter Ln",
"addressLocality": "Austin",
"addressRegion": "TX",
"postalCode": "78704",
"addressCountry": "US"
}
},
"organizer": { "@id": "https://www.example.com/adopt#org" },
"offers": {
"@type": "Offer",
"url": "https://www.example.com/adopt/spring-event#apply"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is the adoption fee?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Adoption fees range from $75 to $150 and include vaccinations and microchipping."
}
},
{
"@type": "Question",
"name": "What do I need to bring?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Bring a valid ID and proof of address. Landlords should provide pet policy documentation."
}
},
{
"@type": "Question",
"name": "Can I adopt the same day?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Same-day adoptions are available for approved applicants. Home checks may be required."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Adopt", "item": "https://www.example.com/adopt" },
{ "@type": "ListItem", "position": 3, "name": "Spring Adoption Event", "item": "https://www.example.com/adopt/spring-event" }
]
}
]Yes. Use one Event per adoption event if multiple events appear on the page.
Use a general adoption page with Organization and FAQPage; omit Event if dates aren’t shown.