Hunter · Schema
DomainEmail
Contact DiscoveryEmailEmail VerificationLead GenerationProspectingSales Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The email address. |
| type | string | Whether the email is personal or generic. |
| confidence | integer | Confidence score for the email address. |
| first_name | ['string', 'null'] | First name of the person. |
| last_name | ['string', 'null'] | Last name of the person. |
| position | ['string', 'null'] | Job position or title. |
| seniority | ['string', 'null'] | Seniority level. |
| department | ['string', 'null'] | Department within the organization. |
| ['string', 'null'] | LinkedIn profile URL. | |
| ['string', 'null'] | Twitter handle. | |
| phone_number | ['string', 'null'] | Phone number. |
| sources | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "DomainEmail",
"type": "object",
"properties": {
"value": {
"type": "string",
"description": "The email address."
},
"type": {
"type": "string",
"description": "Whether the email is personal or generic."
},
"confidence": {
"type": "integer",
"description": "Confidence score for the email address."
},
"first_name": {
"type": "['string', 'null']",
"description": "First name of the person."
},
"last_name": {
"type": "['string', 'null']",
"description": "Last name of the person."
},
"position": {
"type": "['string', 'null']",
"description": "Job position or title."
},
"seniority": {
"type": "['string', 'null']",
"description": "Seniority level."
},
"department": {
"type": "['string', 'null']",
"description": "Department within the organization."
},
"linkedin": {
"type": "['string', 'null']",
"description": "LinkedIn profile URL."
},
"twitter": {
"type": "['string', 'null']",
"description": "Twitter handle."
},
"phone_number": {
"type": "['string', 'null']",
"description": "Phone number."
},
"sources": {
"type": "array"
}
}
}