Demandbase · Schema
IdentificationResult
Account-Based MarketingAdvertisingAI AgentsB2B MarketingData EnrichmentIntent DataPersonalizationSales Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| company_name | string | Identified company name |
| demandbase_sid | string | Demandbase company identifier |
| domain | string | Primary company domain |
| industry | string | Industry classification |
| sub_industry | string | Sub-industry classification |
| employee_count | integer | Number of employees |
| employee_range | string | Employee count range |
| revenue | number | Annual revenue in USD |
| revenue_range | string | Revenue range |
| address | string | Street address |
| city | string | City |
| state | string | State or province |
| country | string | Country |
| zip | string | Postal code |
| country_code | string | ISO country code |
| phone | string | Phone number |
| website | string | Company website |
| stock_ticker | string | Stock ticker symbol |
| fortune_1000 | boolean | Fortune 1000 membership |
| forbes_2000 | boolean | Forbes 2000 membership |
| traffic | string | Website traffic classification |
| b2b | boolean | Whether the company is a B2B company |
| b2c | boolean | Whether the company is a B2C company |
| ip | string | The resolved IP address |
| isp | boolean | Whether the IP belongs to an ISP |
| audience | string | Audience segment classification |
| audience_segment | string | Detailed audience segment |
| registry_company_name | string | Company name from IP registry |
| registry_city | string | City from IP registry |
| registry_state | string | State from IP registry |
| registry_country | string | Country from IP registry |
| registry_country_code | string | Country code from IP registry |
| information_level | string | Level of information available |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IdentificationResult",
"title": "IdentificationResult",
"type": "object",
"properties": {
"company_name": {
"type": "string",
"description": "Identified company name"
},
"demandbase_sid": {
"type": "string",
"description": "Demandbase company identifier"
},
"domain": {
"type": "string",
"description": "Primary company domain"
},
"industry": {
"type": "string",
"description": "Industry classification"
},
"sub_industry": {
"type": "string",
"description": "Sub-industry classification"
},
"employee_count": {
"type": "integer",
"description": "Number of employees"
},
"employee_range": {
"type": "string",
"description": "Employee count range"
},
"revenue": {
"type": "number",
"description": "Annual revenue in USD"
},
"revenue_range": {
"type": "string",
"description": "Revenue range"
},
"address": {
"type": "string",
"description": "Street address"
},
"city": {
"type": "string",
"description": "City"
},
"state": {
"type": "string",
"description": "State or province"
},
"country": {
"type": "string",
"description": "Country"
},
"zip": {
"type": "string",
"description": "Postal code"
},
"country_code": {
"type": "string",
"description": "ISO country code"
},
"phone": {
"type": "string",
"description": "Phone number"
},
"website": {
"type": "string",
"format": "uri",
"description": "Company website"
},
"stock_ticker": {
"type": "string",
"description": "Stock ticker symbol"
},
"fortune_1000": {
"type": "boolean",
"description": "Fortune 1000 membership"
},
"forbes_2000": {
"type": "boolean",
"description": "Forbes 2000 membership"
},
"traffic": {
"type": "string",
"enum": [
"Very High",
"High",
"Medium",
"Low"
],
"description": "Website traffic classification"
},
"b2b": {
"type": "boolean",
"description": "Whether the company is a B2B company"
},
"b2c": {
"type": "boolean",
"description": "Whether the company is a B2C company"
},
"ip": {
"type": "string",
"description": "The resolved IP address"
},
"isp": {
"type": "boolean",
"description": "Whether the IP belongs to an ISP"
},
"audience": {
"type": "string",
"description": "Audience segment classification"
},
"audience_segment": {
"type": "string",
"description": "Detailed audience segment"
},
"registry_company_name": {
"type": "string",
"description": "Company name from IP registry"
},
"registry_city": {
"type": "string",
"description": "City from IP registry"
},
"registry_state": {
"type": "string",
"description": "State from IP registry"
},
"registry_country": {
"type": "string",
"description": "Country from IP registry"
},
"registry_country_code": {
"type": "string",
"description": "Country code from IP registry"
},
"information_level": {
"type": "string",
"enum": [
"Detailed",
"Basic",
"Limited"
],
"description": "Level of information available"
}
}
}