Gong · Schema
Gong Prospect
Represents a prospect in the Gong Engage platform, typically a sales lead or potential customer being targeted through automated outreach flows.
SalesRevenue IntelligenceConversationAnalyticsAI
Properties
| Name | Type | Description |
|---|---|---|
| emailAddress | string | The prospect's email address. |
| firstName | string | The prospect's first name. |
| lastName | string | The prospect's last name. |
| company | string | The prospect's company name. |
| title | string | The prospect's job title. |
| phoneNumber | string | The prospect's phone number. |
| linkedInUrl | string | The prospect's LinkedIn profile URL. |
| customFields | object | Custom field key-value pairs for the prospect. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/api-evangelist/gong/blob/main/json-schema/gong-prospect-schema.json",
"title": "Gong Prospect",
"description": "Represents a prospect in the Gong Engage platform, typically a sales lead or potential customer being targeted through automated outreach flows.",
"type": "object",
"properties": {
"emailAddress": {
"type": "string",
"format": "email",
"description": "The prospect's email address."
},
"firstName": {
"type": "string",
"description": "The prospect's first name."
},
"lastName": {
"type": "string",
"description": "The prospect's last name."
},
"company": {
"type": "string",
"description": "The prospect's company name."
},
"title": {
"type": "string",
"description": "The prospect's job title."
},
"phoneNumber": {
"type": "string",
"description": "The prospect's phone number."
},
"linkedInUrl": {
"type": "string",
"format": "uri",
"description": "The prospect's LinkedIn profile URL."
},
"customFields": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Custom field key-value pairs for the prospect."
}
},
"required": ["emailAddress"]
}