ZoomInfo · Schema

BulkContactSearchRequest

B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence

Properties

Name Type Description
jobType string
query object
View JSON Schema on GitHub

JSON Schema

zoominfo-bulk-contact-search-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "jobType": {
      "type": "string",
      "example": "standard"
    },
    "query": {
      "type": "object",
      "properties": {
        "firstName": {
          "type": "string",
          "example": "Acme Corporation"
        },
        "companyName": {
          "type": "string",
          "example": "Acme Corporation"
        }
      },
      "required": [
        "firstName",
        "companyName"
      ]
    }
  },
  "required": [
    "jobType",
    "query"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BulkContactSearchRequest"
}