UpLead · Schema
UpLead Person
Schema for a person/contact record returned by the UpLead API.
B2BLead GenerationContact DataCompany DataEmail VerificationData EnrichmentSales Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Internal UpLead person ID. |
| first_name | string | |
| last_name | string | |
| title | string | |
| job_function | string | |
| job_sub_function | string | |
| management_level | string | M=Manager, D=Director, VP=Vice President, C=C-Suite |
| gender | string | |
| string | ||
| email_status | string | |
| phone_number | string | |
| mobile_directdial | string | |
| city | string | |
| state | string | |
| county | string | |
| country | string | |
| linkedin_url | string | |
| industry | string | |
| domain | string | |
| company_name | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/uplead/main/json-schema/person.json",
"title": "UpLead Person",
"description": "Schema for a person/contact record returned by the UpLead API.",
"type": "object",
"properties": {
"id": { "type": "string", "description": "Internal UpLead person ID." },
"first_name": { "type": "string" },
"last_name": { "type": "string" },
"title": { "type": "string" },
"job_function": {
"type": "string",
"enum": [
"advisory", "analyst", "creative", "education", "engineering",
"finance", "fulfillment", "health", "hospitality", "human resources",
"legal", "manufacturing", "marketing", "operations", "partnerships",
"product", "professional service", "public service", "research",
"sales", "sales engineering", "support", "trade", "unemployed"
]
},
"job_sub_function": { "type": "string" },
"management_level": {
"type": "string",
"enum": ["M", "D", "VP", "C"],
"description": "M=Manager, D=Director, VP=Vice President, C=C-Suite"
},
"gender": { "type": "string" },
"email": { "type": "string", "format": "email" },
"email_status": {
"type": "string",
"enum": ["valid", "invalid", "accept_all", "unknown"]
},
"phone_number": { "type": "string" },
"mobile_directdial": { "type": "string" },
"city": { "type": "string" },
"state": { "type": "string" },
"county": { "type": "string" },
"country": { "type": "string" },
"linkedin_url": { "type": "string", "format": "uri" },
"industry": { "type": "string" },
"domain": { "type": "string" },
"company_name": { "type": "string" }
}
}