ZoomInfo · JSON Structure

Zoominfo Recommended Contact Structure

Type: object Properties: 5 Required: 5
B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence

RecommendedContact is a JSON Structure definition published by ZoomInfo, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

id firstName lastName jobTitle jobFunction

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "RecommendedContact",
  "properties": {
    "id": {
      "type": "integer"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "jobTitle": {
      "type": "string"
    },
    "jobFunction": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "department": {
            "type": "string"
          }
        },
        "required": [
          "name",
          "department"
        ]
      }
    }
  },
  "required": [
    "id",
    "firstName",
    "lastName",
    "jobTitle",
    "jobFunction"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}