Demandbase · Schema
Demandbase Contact
Represents a business contact in Demandbase with professional details, company association, and contact information for B2B engagement.
Account-Based MarketingAdvertisingAI AgentsB2B MarketingData EnrichmentIntent DataPersonalizationSales Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| contact_id | string | Unique Demandbase contact identifier |
| first_name | string | First name |
| last_name | string | Last name |
| string | Business email address | |
| title | string | Job title |
| department | string | Department or functional area |
| seniority | string | Seniority level (e.g., C-Level, VP, Director, Manager) |
| phone | string | Direct phone number |
| linkedin_url | string | LinkedIn profile URL |
| company_id | string | Associated Demandbase company ID |
| company_name | string | Company name |
| company_domain | string | Company web domain |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.demandbase.com/schemas/demandbase/contact.json",
"title": "Demandbase Contact",
"description": "Represents a business contact in Demandbase with professional details, company association, and contact information for B2B engagement.",
"type": "object",
"properties": {
"contact_id": {
"type": "string",
"description": "Unique Demandbase contact identifier"
},
"first_name": {
"type": "string",
"description": "First name"
},
"last_name": {
"type": "string",
"description": "Last name"
},
"email": {
"type": "string",
"format": "email",
"description": "Business email address"
},
"title": {
"type": "string",
"description": "Job title"
},
"department": {
"type": "string",
"description": "Department or functional area"
},
"seniority": {
"type": "string",
"description": "Seniority level (e.g., C-Level, VP, Director, Manager)"
},
"phone": {
"type": "string",
"description": "Direct phone number"
},
"linkedin_url": {
"type": "string",
"format": "uri",
"description": "LinkedIn profile URL"
},
"company_id": {
"type": "string",
"description": "Associated Demandbase company ID"
},
"company_name": {
"type": "string",
"description": "Company name"
},
"company_domain": {
"type": "string",
"description": "Company web domain"
}
}
}