Demandbase · Schema

Technographics

Account-Based MarketingAdvertisingAI AgentsB2B MarketingData EnrichmentIntent DataPersonalizationSales Intelligence

Properties

Name Type Description
domain string Company domain
technologies array Technologies used by the company
View JSON Schema on GitHub

JSON Schema

demandbase-technographics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Technographics",
  "title": "Technographics",
  "type": "object",
  "properties": {
    "domain": {
      "type": "string",
      "description": "Company domain"
    },
    "technologies": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Technology name"
          },
          "category": {
            "type": "string",
            "description": "Technology category"
          },
          "vendor": {
            "type": "string",
            "description": "Technology vendor"
          },
          "first_detected": {
            "type": "string",
            "format": "date",
            "description": "When the technology was first detected"
          },
          "last_detected": {
            "type": "string",
            "format": "date",
            "description": "When the technology was last detected"
          }
        }
      },
      "description": "Technologies used by the company"
    }
  }
}