{ "$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" } } }