ZoomInfo · JSON Structure

Zoominfo Data35 Structure

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

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

Properties

phone fax street city state zipCode country company

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Data35",
  "properties": {
    "phone": {
      "type": "string"
    },
    "fax": {
      "type": "string"
    },
    "street": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "zipCode": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "company": {
      "type": "object",
      "properties": {
        "id": {
          "type": "integer"
        },
        "addressStatus": {
          "type": "string"
        },
        "subUnitType": {
          "type": "string"
        },
        "locationName": {
          "type": "string"
        },
        "locationEmployeeCount": {
          "type": "integer"
        }
      },
      "required": [
        "id",
        "addressStatus",
        "subUnitType",
        "locationName",
        "locationEmployeeCount"
      ]
    }
  },
  "required": [
    "phone",
    "fax",
    "street",
    "city",
    "state",
    "zipCode",
    "country",
    "company"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}