We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Contest and giveaway landing pages with Event + Offer context, FAQs, and breadcrumb navigation.
Represents the contest window and attendance mode.
Describes entry terms or prize details for the giveaway.
Answers eligibility, odds, and winner selection questions.
Provides navigation context for the contest 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": "Event",
"@id": "https://www.example.com/contests/summer-giveaway#event",
"name": "Summer Adventure Gear Giveaway",
"description": "Enter for a chance to win a full adventure gear bundle. One entry per day.",
"startDate": "2025-06-01T08:00:00-05:00",
"endDate": "2025-06-30T23:59:00-05:00",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode",
"isAccessibleForFree": true,
"url": "https://www.example.com/contests/summer-giveaway",
"location": {
"@type": "VirtualLocation",
"url": "https://www.example.com/contests/summer-giveaway"
},
"organizer": { "@type": "Organization", "name": "Trailway Outfitters" }
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/contests/summer-giveaway#offer",
"name": "Giveaway Entry",
"description": "Free entry for eligible participants. Prize bundle retail value $1,200.",
"price": "0.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/contests/summer-giveaway#enter",
"validFrom": "2025-06-01T08:00:00-05:00",
"validThrough": "2025-06-30T23:59:00-05:00",
"category": "ContestEntry"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Who is eligible to enter?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Open to US residents 18+; employees and immediate family members are not eligible."
}
},
{
"@type": "Question",
"name": "How many entries are allowed?",
"acceptedAnswer": {
"@type": "Answer",
"text": "One entry per person per day during the giveaway window."
}
},
{
"@type": "Question",
"name": "When will winners be notified?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Winners are contacted by email within 5 business days of the giveaway close."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Contests", "item": "https://www.example.com/contests" },
{ "@type": "ListItem", "position": 3, "name": "Summer Giveaway", "item": "https://www.example.com/contests/summer-giveaway" }
]
}
]Yes. Summarize eligibility, entry limits, and odds in the FAQ and on-page rules.
Mention prize tiers in the Offer description or add multiple Offer objects if prizes have distinct values.