{ "$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"] }