ZoomInfo · Schema

ScoopSearchRequest

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

Properties

Name Type Description
companyName string
publishedStartDate string
publishedEndDate string
scoopType string
updatedSinceCreation boolean
description string
View JSON Schema on GitHub

JSON Schema

zoominfo-scoop-search-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "companyName": {
      "type": "string",
      "example": "Acme Corporation"
    },
    "publishedStartDate": {
      "type": "string",
      "example": "2025-03-15T14:30:00Z"
    },
    "publishedEndDate": {
      "type": "string",
      "example": "2025-03-15T14:30:00Z"
    },
    "scoopType": {
      "type": "string",
      "example": "standard"
    },
    "updatedSinceCreation": {
      "type": "boolean",
      "example": true
    },
    "description": {
      "type": "string",
      "example": "Enterprise software company"
    }
  },
  "required": [
    "companyName",
    "publishedStartDate",
    "publishedEndDate",
    "scoopType",
    "updatedSinceCreation",
    "description"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ScoopSearchRequest"
}