Gong · Schema

MeetingAttendee

SalesRevenue IntelligenceConversationAnalyticsAI

Properties

Name Type Description
emailAddress string The attendee's email address.
name string The attendee's display name.
responseStatus string The attendee's RSVP response status.
View JSON Schema on GitHub

JSON Schema

gong-meetingattendee-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MeetingAttendee",
  "title": "MeetingAttendee",
  "type": "object",
  "properties": {
    "emailAddress": {
      "type": "string",
      "format": "email",
      "description": "The attendee's email address."
    },
    "name": {
      "type": "string",
      "description": "The attendee's display name."
    },
    "responseStatus": {
      "type": "string",
      "enum": [
        "Accepted",
        "Declined",
        "Tentative",
        "NeedsAction"
      ],
      "description": "The attendee's RSVP response status."
    }
  }
}