ZoomInfo · Schema

Datum10

B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales IntelligenceIntent DataGo-To-MarketData EnrichmentAI AgentsMCP

Properties

Name Type Description
domain string
title string
url string
imageUrl string
pageDate string
categories array
company array
View JSON Schema on GitHub

JSON Schema

zoominfo-datum10-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "domain": {
      "type": "string",
      "example": "example.com"
    },
    "title": {
      "type": "string",
      "example": "Vice President of Sales"
    },
    "url": {
      "type": "string",
      "example": "https://www.example.com/resource"
    },
    "imageUrl": {
      "type": "string",
      "example": "https://www.example.com/resource"
    },
    "pageDate": {
      "type": "string",
      "example": "2025-03-15T14:30:00Z"
    },
    "categories": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "company": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "example": 500123
          },
          "name": {
            "type": "string",
            "example": "Acme Corporation"
          }
        },
        "required": [
          "id",
          "name"
        ]
      }
    }
  },
  "required": [
    "domain",
    "title",
    "url",
    "imageUrl",
    "pageDate",
    "categories",
    "company"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Datum10"
}