ZoomInfo · Schema

NewsEnrichRequest

B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence

Properties

Name Type Description
companyId integer
categories array
url array
pageDateMin string
pageDateMax string
limit integer
View JSON Schema on GitHub

JSON Schema

zoominfo-news-enrich-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "companyId": {
      "type": "integer",
      "example": 500123
    },
    "categories": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "url": {
      "type": "array",
      "description": "",
      "example": "https://www.example.com",
      "items": {
        "type": "string"
      }
    },
    "pageDateMin": {
      "type": "string",
      "example": "2025-03-15T14:30:00Z"
    },
    "pageDateMax": {
      "type": "string",
      "example": "2025-03-15T14:30:00Z"
    },
    "limit": {
      "type": "integer",
      "example": 100
    }
  },
  "required": [
    "companyId",
    "categories",
    "url",
    "pageDateMin",
    "pageDateMax",
    "limit"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "NewsEnrichRequest"
}