Career Fair Virtual Booth Stack
Virtual career fair booth pages with Event + WebApplication + Organization context, FAQs, and breadcrumb navigation.
When to use this stack
- Virtual career fair booth landing pages
- Employer pages with live chat and session times
- Pages where FAQs clarify schedules, eligibility, and prep
What is included
Defines the virtual booth session with date, attendance mode, and access URL.
Represents the virtual booth experience or platform for the event.
Anchors the employer hosting the virtual booth.
Answers questions about sessions, access, and preparation.
Provides navigation context for the virtual booth 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
- applicationCategory
- eventAttendanceMode
- itemListElement[].name
- location.name
- logo
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- startDate
- url
Recommended properties
- contactPoint.telephone
- description
- endDate
- eventStatus
- itemListElement[].item
- location.url
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- operatingSystem
- organizer.@id
- provider.name
- 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#org",
"name": "Northwind Labs",
"url": "https://www.example.com/careers",
"logo": "https://www.example.com/assets/logo.svg",
"sameAs": [
"https://www.linkedin.com/company/northwind-labs"
],
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-512-555-0142",
"contactType": "Recruiting"
}
},
{
"@context": "https://schema.org",
"@type": "WebApplication",
"@id": "https://www.example.com/career-fair/booth#app",
"name": "Northwind Virtual Booth",
"url": "https://www.example.com/career-fair/booth",
"applicationCategory": "BusinessApplication",
"operatingSystem": "Web",
"description": "Live chat, video sessions, and recruiter Q&A for the virtual career fair.",
"provider": { "@id": "https://www.example.com/careers#org" }
},
{
"@context": "https://schema.org",
"@type": "Event",
"@id": "https://www.example.com/career-fair/booth#event",
"name": "Northwind Labs Virtual Booth",
"description": "Meet recruiters, ask questions, and learn about open roles.",
"startDate": "2025-03-18T10:00:00-05:00",
"endDate": "2025-03-18T16:00:00-05:00",
"eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode",
"eventStatus": "https://schema.org/EventScheduled",
"url": "https://www.example.com/career-fair/booth",
"location": {
"@type": "VirtualLocation",
"name": "Virtual Booth Room",
"url": "https://www.example.com/career-fair/booth"
},
"organizer": { "@id": "https://www.example.com/careers#org" }
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do I need to register before joining?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Register for the career fair to access the booth link and session schedule."
}
},
{
"@type": "Question",
"name": "What should I prepare?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Bring a PDF resume and a short introduction to share with recruiters."
}
},
{
"@type": "Question",
"name": "Are there 1:1 sessions?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Time slots are posted in the booth and require booking."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Career Fair", "item": "https://www.example.com/career-fair" },
{ "@type": "ListItem", "position": 3, "name": "Northwind Booth", "item": "https://www.example.com/career-fair/booth" }
]
}
]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 include multiple session times?
If you have multiple booth sessions, add separate Event entries or list each session in the page content.
Do I need WebApplication if the booth is hosted on a platform?
Yes. Use WebApplication to describe the virtual booth experience and link to the platform URL.