Hunter · Schema
PersonEnrichment
Contact DiscoveryEmailEmail VerificationLead GenerationProspectingSales Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the person record. |
| name | object | |
| string | Email address. | |
| location | ['string', 'null'] | Location description. |
| timeZone | ['string', 'null'] | Time zone name. |
| utcOffset | ['number', 'null'] | UTC offset in hours. |
| bio | ['string', 'null'] | Short biography. |
| site | ['string', 'null'] | Personal website URL. |
| avatar | ['string', 'null'] | Avatar image URL. |
| employment | object | |
| object | ||
| github | object | |
| object | ||
| object | ||
| fuzzy | boolean | Whether the match was fuzzy. |
| emailProvider | ['string', 'null'] | Email service provider. |
| indexedAt | ['string', 'null'] | Date when the record was last indexed. |
| phone | ['string', 'null'] | Phone number. |
| activeAt | ['string', 'null'] | Date when the person was last active. |
| inactiveAt | ['string', 'null'] | Date when the person became inactive. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PersonEnrichment",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the person record."
},
"name": {
"type": "object"
},
"email": {
"type": "string",
"description": "Email address."
},
"location": {
"type": "['string', 'null']",
"description": "Location description."
},
"timeZone": {
"type": "['string', 'null']",
"description": "Time zone name."
},
"utcOffset": {
"type": "['number', 'null']",
"description": "UTC offset in hours."
},
"bio": {
"type": "['string', 'null']",
"description": "Short biography."
},
"site": {
"type": "['string', 'null']",
"description": "Personal website URL."
},
"avatar": {
"type": "['string', 'null']",
"description": "Avatar image URL."
},
"employment": {
"type": "object"
},
"facebook": {
"type": "object"
},
"github": {
"type": "object"
},
"twitter": {
"type": "object"
},
"linkedin": {
"type": "object"
},
"fuzzy": {
"type": "boolean",
"description": "Whether the match was fuzzy."
},
"emailProvider": {
"type": "['string', 'null']",
"description": "Email service provider."
},
"indexedAt": {
"type": "['string', 'null']",
"description": "Date when the record was last indexed."
},
"phone": {
"type": "['string', 'null']",
"description": "Phone number."
},
"activeAt": {
"type": "['string', 'null']",
"description": "Date when the person was last active."
},
"inactiveAt": {
"type": "['string', 'null']",
"description": "Date when the person became inactive."
}
}
}