Cookies & analytics

    We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.

    SwiftSchema Logo

    SwiftSchema

    Intuitive Schema Generation at Your Fingertips

    AboutLearnContact
      Stack

      Job Fair Stack

      Job fair pages with Event + Organization context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      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's included

      • Defines the job fair event details, dates, and location.

      • Organization
        Open generator

        Represents the organizing entity or host.

      • Frequently Asked Questions
        Open generator

        Answers questions about registration, eligibility, and access.

      • Breadcrumb
        Open generator

        Provides navigation context to the job fair page.

      Required properties (stack union)

      Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).

      endDate
      itemListElement[].name
      location.name
      logo
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      startDate
      url

      Recommended properties (stack union)

      contactPoint.telephone
      eventAttendanceMode
      eventStatus
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      offers.url
      sameAs

      Combined JSON-LD

      Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.

      Validate
      [
        {
          "@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" }
          ]
        }
      ]

      Implementation steps

      1. Start from your live product detail page content; ensure titles, prices, and availability match the page.
      2. Embed one JSON-LD script in the head or just before the closing body tag using the combined example as a template.
      3. Fill shipping details for each region you serve and keep them aligned with on-page shipping tables.
      4. Attach your canonical MerchantReturnPolicy URL and keep the policy text in sync with Merchant Center.
      5. Add 3–6 FAQs that address purchase blockers (shipping, returns, compatibility) and keep answers consistent with visible content.
      6. Validate in the Rich Results Test and revalidate after price/availability/policy changes.

      Common errors and fixes

      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.

      References