Note: You are viewing the development version of Schema.org. See how we work for more details.

eventAttendanceMode

A Schema.org Property

This term is in the "new" area - implementation feedback and adoption from applications and websites can help improve our definitions.
The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix.

Values expected to be one of these types

Used on these types

Source

https://github.com/schemaorg/schemaorg/issues/1842


Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. Example of an online event.
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2.     {
  3.       "@context": "https://schema.org",
  4.       "@type": "ChildrensEvent",
  5.       "name": "Story Time Reading",
  6.       "startDate": "2020-07-24T16:00Z",
  7.       "endDate": "2020-07-24T16:30Z",
  8.       "eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode",
  9.       "eventStatus": "https://schema.org/EventScheduled",
  10.       "location": {
  11.         "@type": "VirtualLocation",
  12.         "url": "https://stream.storytimereadings.com/"
  13.       },

  14.       "image": "https://storytimereadings.com/photos/childrensphoto.jpg",
  15.       "description": "Story Time readings for children of all ages - July 2020 edition",
  16.       "offers": {
  17.         "@type": "Offer",
  18.         "url": "https://torytimereadings.com/event_offer/2020-07-24-free",
  19.         "price": "0",
  20.         "priceCurrency": "USD",
  21.         "availability": "https://schema.org/InStock",
  22.         "validFrom": "2020-07-01T12:00"
  23.       },
  24.       "performer": {
  25.         "@type": "Person",
  26.         "name": "Darren R Story",
  27.         "alternateName": "The Virtual Story Master"
  28.       },
  29.       "organizer": {
  30.         "@type": "Organization",
  31.         "name": "Story Time Virtual Events",
  32.         "url": "https://torytimereadings.com.com"
  33.       }
  34.     }
  35.     </script>
Structured representation of the JSON-LD example.
Example 2
Copied
Example notes or example HTML without markup.
  1. Example of a mixed online and offline event.
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2.     {
  3.       "@context": "https://schema.org",
  4.       "@type": "Event",
  5.       "name": "The Adventures of Kira and Morrison",
  6.       "startDate": "2025-07-21T19:00-05:00",
  7.       "endDate": "2025-07-21T23:00-05:00",
  8.       "eventAttendanceMode": "https://schema.org/MixedEventAttendanceMode",
  9.       "eventStatus": "https://schema.org/EventScheduled",
  10.       "location": [{
  11.         "@type": "VirtualLocation",
  12.         "url": "https://operaonline.stream5.com/"
  13.       },
  14.       {
  15.         "@type": "Place",
  16.         "name": "Snickerpark Stadium",
  17.         "address": {
  18.           "@type": "PostalAddress",
  19.           "streetAddress": "100 West Snickerpark Dr",
  20.           "addressLocality": "Snickertown",
  21.           "postalCode": "19019",
  22.           "addressRegion": "PA",
  23.           "addressCountry": "US"
  24.         }
  25.       }],
  26.       "image": [
  27.         "https://example.com/photos/1x1/photo.jpg",
  28.         "https://example.com/photos/4x3/photo.jpg",
  29.         "https://example.com/photos/16x9/photo.jpg"
  30.        ],
  31.       "description": "The Adventures of Kira and Morrison is coming to Snickertown in a can’t miss performance.",
  32.       "offers": {
  33.         "@type": "Offer",
  34.         "url": "https://www.example.com/event_offer/12345_201803180430",
  35.         "price": "30",
  36.         "priceCurrency": "USD",
  37.         "availability": "https://schema.org/InStock",
  38.         "validFrom": "2024-05-21T12:00"
  39.       },
  40.       "performer": {
  41.         "@type": "PerformingGroup",
  42.         "name": "Kira and Morrison"
  43.       },
  44.       "organizer": {
  45.         "@type": "Organization",
  46.         "name": "Kira and Morrison Music",
  47.         "url": "https://kiraandmorrisonmusic.com"
  48.       }
  49.     }
  50.     </script>
Structured representation of the JSON-LD example.