Demandbase · Schema

Company

Account-Based MarketingAdvertisingAI AgentsB2B MarketingData EnrichmentIntent DataPersonalizationSales Intelligence

Properties

Name Type Description
company_id string Demandbase company identifier
company_name string Official company name
domain string Primary web domain
website string Company website URL
industry string Industry classification
sub_industry string Sub-industry classification
sic_code string SIC code
naics_code string NAICS code
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
phone string Phone number
stock_ticker string Stock ticker symbol
founded_year integer Year the company was founded
fortune_1000 boolean Fortune 1000 membership
forbes_2000 boolean Forbes 2000 membership
parent_company_id string Parent company ID
parent_company_name string Parent company name
ultimate_parent_company_id string Ultimate parent company ID
ultimate_parent_company_name string Ultimate parent company name
View JSON Schema on GitHub

JSON Schema

demandbase-company-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Company",
  "title": "Company",
  "type": "object",
  "properties": {
    "company_id": {
      "type": "string",
      "description": "Demandbase company identifier"
    },
    "company_name": {
      "type": "string",
      "description": "Official company name"
    },
    "domain": {
      "type": "string",
      "description": "Primary web domain"
    },
    "website": {
      "type": "string",
      "format": "uri",
      "description": "Company website URL"
    },
    "industry": {
      "type": "string",
      "description": "Industry classification"
    },
    "sub_industry": {
      "type": "string",
      "description": "Sub-industry classification"
    },
    "sic_code": {
      "type": "string",
      "description": "SIC code"
    },
    "naics_code": {
      "type": "string",
      "description": "NAICS code"
    },
    "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"
    },
    "phone": {
      "type": "string",
      "description": "Phone number"
    },
    "stock_ticker": {
      "type": "string",
      "description": "Stock ticker symbol"
    },
    "founded_year": {
      "type": "integer",
      "description": "Year the company was founded"
    },
    "fortune_1000": {
      "type": "boolean",
      "description": "Fortune 1000 membership"
    },
    "forbes_2000": {
      "type": "boolean",
      "description": "Forbes 2000 membership"
    },
    "parent_company_id": {
      "type": "string",
      "description": "Parent company ID"
    },
    "parent_company_name": {
      "type": "string",
      "description": "Parent company name"
    },
    "ultimate_parent_company_id": {
      "type": "string",
      "description": "Ultimate parent company ID"
    },
    "ultimate_parent_company_name": {
      "type": "string",
      "description": "Ultimate parent company name"
    }
  }
}