ZoomInfo · Schema

NewsSearchRequest

B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence

Properties

Name Type Description
categories array
url array
pageDateMin string
pageDateMax string
page integer
rpp integer
View JSON Schema on GitHub

JSON Schema

zoominfo-news-search-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "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"
    },
    "page": {
      "type": "integer",
      "example": 1
    },
    "rpp": {
      "type": "integer",
      "example": 100
    }
  },
  "required": [
    "categories",
    "url",
    "pageDateMin",
    "pageDateMax",
    "page",
    "rpp"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "NewsSearchRequest"
}