ZoomInfo · Schema

RecommendedContact

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

Properties

Name Type Description
id integer
firstName string
lastName string
jobTitle string
jobFunction array
View JSON Schema on GitHub

JSON Schema

zoominfo-recommended-contact-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "example": 500123
    },
    "firstName": {
      "type": "string",
      "example": "Acme Corporation"
    },
    "lastName": {
      "type": "string",
      "example": "Acme Corporation"
    },
    "jobTitle": {
      "type": "string",
      "example": "Vice President of Sales"
    },
    "jobFunction": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "example": "Acme Corporation"
          },
          "department": {
            "type": "string",
            "example": "example_value"
          }
        },
        "required": [
          "name",
          "department"
        ]
      }
    }
  },
  "required": [
    "id",
    "firstName",
    "lastName",
    "jobTitle",
    "jobFunction"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RecommendedContact"
}