Job Fair Stack
Job fair pages with Event + Organization context, FAQs, and breadcrumb navigation.
When to use this stack
- In-person or virtual job fair landing pages
- Recruiting events with participating employers
- Pages where FAQs clarify registration, dates, and access
What is included
Defines the job fair event details, dates, and location.
Represents the organizing entity or host.
Answers questions about registration, eligibility, and access.
Provides navigation context to the job fair 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
- endDate
- itemListElement[].name
- location.name
- logo
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- startDate
- url
Recommended properties
- contactPoint.telephone
- eventAttendanceMode
- eventStatus
- itemListElement[].item
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- offers.url
- sameAs
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": "Organization",
"@id": "https://www.example.com/careers/fair#org",
"name": "Northwind Careers",
"url": "https://www.example.com/careers",
"logo": "https://www.example.com/assets/logo.svg",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-312-555-0140",
"contactType": "Recruiting"
}
},
{
"@context": "https://schema.org",
"@type": "Event",
"@id": "https://www.example.com/careers/fair#event",
"name": "Spring 2025 Job Fair",
"startDate": "2025-04-10T10:00:00-05:00",
"endDate": "2025-04-10T16:00:00-05:00",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"url": "https://www.example.com/careers/fair",
"location": {
"@type": "Place",
"name": "Lakeside Convention Center",
"address": {
"@type": "PostalAddress",
"streetAddress": "800 Convention Dr",
"addressLocality": "Chicago",
"addressRegion": "IL",
"postalCode": "60601",
"addressCountry": "US"
}
},
"organizer": { "@id": "https://www.example.com/careers/fair#org" },
"offers": {
"@type": "Offer",
"url": "https://www.example.com/careers/fair#register"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do I need to register?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Registration is required to receive your entry badge."
}
},
{
"@type": "Question",
"name": "Is there a virtual option?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. A virtual session runs from 5–7 PM with a separate registration link."
}
},
{
"@type": "Question",
"name": "What should I bring?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Bring a printed resume and a government-issued ID for entry."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Careers", "item": "https://www.example.com/careers" },
{ "@type": "ListItem", "position": 3, "name": "Job Fair", "item": "https://www.example.com/careers/fair" }
]
}
]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
Can I include multiple job fair dates?
Yes. Use one Event per date if multiple fairs are listed on the page.
What if it’s a virtual-only fair?
Set eventAttendanceMode to OnlineEventAttendanceMode and use a VirtualLocation in the Event.