Skip to content

event

The event parent type covers event listings, conference pages, meetup announcements, webinars, concerts, sports events, and workshops. It captures the structured event data that agents need for calendar integration, discovery, and recommendation.

SubtypeQualified TypeDescription
conferenceevent.conferenceConference or summit
meetupevent.meetupMeetup or community gathering
webinarevent.webinarOnline webinar or virtual event
concertevent.concertConcert or live music event
sportsevent.sportsSports event or match
workshopevent.workshopWorkshop or training session
FieldTypeRequiredDescription
event_namestringYesName of the event
start_datestring (ISO 8601)YesEvent start date/time
end_datestring (ISO 8601)NoEvent end date/time
locationobjectNoEvent location
organizerstringNoEvent organizer name
speakersarray<string>NoFeatured speakers or performers
registration_urlstringNoURL for event registration
priceobjectNoTicket or attendance pricing
event type_data
{
"type_data": {
"event_name": "NeurIPS 2025",
"start_date": "2025-12-09T09:00:00-08:00",
"end_date": "2025-12-15T18:00:00-08:00",
"location": {
"venue": "Vancouver Convention Centre",
"city": "Vancouver",
"country": "CA",
"virtual": false
},
"organizer": "Neural Information Processing Systems Foundation",
"speakers": [
"Yann LeCun",
"Demis Hassabis",
"Daphne Koller"
],
"registration_url": "https://neurips.cc/Register",
"price": {
"amount": 850.00,
"currency": "USD",
"tiers": [
{ "name": "Student", "amount": 250.00 },
{ "name": "Academic", "amount": 550.00 },
{ "name": "Industry", "amount": 850.00 }
]
}
}
}
FieldTypeDescription
venuestringVenue name
citystringCity name
countrystringISO 3166-1 alpha-2 country code
virtualbooleanWhether the event is virtual or hybrid
FieldTypeDescription
amountnumberBase price
currencystringISO 4217 currency code
tiersarray<object>Pricing tiers if multiple options exist
  • start_date and end_date should include timezone information. Use full ISO 8601 format with offset.
  • location.country uses ISO 3166-1 alpha-2 codes (e.g., "US", "CA", "GB").
  • For hybrid events, set location.virtual to true and include the physical venue details.
  • speakers lists keynote or featured speakers, not all presenters. The full speaker list can be in sections.
  • price captures the registration or ticket price. For free events, omit the field or set amount to 0.
  • For recurring events, each occurrence should be a separate SDF document.