ZoomInfo · JSON Structure

Zoominfo Data11 Structure

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

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

Properties

id firstName middleName lastName email hasCanadianEmail phone street city region company

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Data11",
  "properties": {
    "id": {
      "type": "integer"
    },
    "firstName": {
      "type": "string"
    },
    "middleName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "hasCanadianEmail": {
      "type": "string"
    },
    "phone": {
      "type": "string"
    },
    "street": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "region": {
      "type": "string"
    },
    "company": {
      "type": "object",
      "properties": {
        "id": {
          "type": "integer"
        }
      },
      "required": [
        "id"
      ]
    }
  },
  "required": [
    "id",
    "firstName",
    "middleName",
    "lastName",
    "email",
    "hasCanadianEmail",
    "phone",
    "street",
    "city",
    "region",
    "company"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}