ZoomInfo · Schema

Data3

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

Properties

Name Type Description
id integer
firstName string
middleName string
lastName string
email string
hasCanadianEmail string
phone string
directPhoneDoNotCall boolean
street string
city string
region string
metroArea string
zipCode string
state string
country string
personHasMoved string
withinEu boolean
withinCalifornia boolean
withinCanada boolean
lastUpdatedDate string
noticeProvidedDate string
salutation string
suffix string
jobTitle string
jobFunction array
education array
hashedEmails array
picture string
mobilePhoneDoNotCall boolean
externalUrls array
contactAccuracyScore integer
isDefunct boolean
employmentHistory array
managementLevel array
locationCompanyId integer
company object
View JSON Schema on GitHub

JSON Schema

zoominfo-data3-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "example": 500123
    },
    "firstName": {
      "type": "string",
      "example": "Acme Corporation"
    },
    "middleName": {
      "type": "string",
      "example": "Acme Corporation"
    },
    "lastName": {
      "type": "string",
      "example": "Acme Corporation"
    },
    "email": {
      "type": "string",
      "example": "jsmith@example.com"
    },
    "hasCanadianEmail": {
      "type": "string",
      "example": "jsmith@example.com"
    },
    "phone": {
      "type": "string",
      "example": "+1-555-555-1234"
    },
    "directPhoneDoNotCall": {
      "type": "boolean",
      "example": true
    },
    "street": {
      "type": "string",
      "example": "example_value"
    },
    "city": {
      "type": "string",
      "example": "San Francisco"
    },
    "region": {
      "type": "string",
      "example": "example_value"
    },
    "metroArea": {
      "type": "string",
      "example": "example_value"
    },
    "zipCode": {
      "type": "string",
      "example": "94105"
    },
    "state": {
      "type": "string",
      "example": "CA"
    },
    "country": {
      "type": "string",
      "example": "US"
    },
    "personHasMoved": {
      "type": "string",
      "example": "example_value"
    },
    "withinEu": {
      "type": "boolean",
      "example": true
    },
    "withinCalifornia": {
      "type": "boolean",
      "example": true
    },
    "withinCanada": {
      "type": "boolean",
      "example": true
    },
    "lastUpdatedDate": {
      "type": "string",
      "example": "2025-03-15T14:30:00Z"
    },
    "noticeProvidedDate": {
      "type": "string",
      "example": "2025-03-15T14:30:00Z"
    },
    "salutation": {
      "type": "string",
      "example": "example_value"
    },
    "suffix": {
      "type": "string",
      "example": "example_value"
    },
    "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"
        ]
      }
    },
    "education": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "school": {
            "type": "string",
            "example": "example_value"
          },
          "educationDegree": {
            "type": "object",
            "properties": {
              "degree": {
                "type": "string",
                "example": "example_value"
              },
              "areaOfStudy": {
                "type": "string",
                "example": "example_value"
              }
            },
            "required": [
              "degree",
              "areaOfStudy"
            ]
          }
        },
        "required": [
          "school",
          "educationDegree"
        ]
      }
    },
    "hashedEmails": {
      "type": "array",
      "description": "",
      "example": "user@example.com",
      "items": {
        "type": "string"
      }
    },
    "picture": {
      "type": "string",
      "example": "example_value"
    },
    "mobilePhoneDoNotCall": {
      "type": "boolean",
      "example": true
    },
    "externalUrls": {
      "type": "array",
      "description": "",
      "example": "https://www.example.com",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "example": "standard"
          },
          "url": {
            "type": "string",
            "example": "https://www.example.com/resource"
          }
        },
        "required": [
          "type",
          "url"
        ]
      }
    },
    "contactAccuracyScore": {
      "type": "integer",
      "example": 85
    },
    "isDefunct": {
      "type": "boolean",
      "example": true
    },
    "employmentHistory": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "jobTitle": {
            "type": "string",
            "example": "Vice President of Sales"
          },
          "managementLevel": {
            "type": "array",
            "description": "",
            "example": [],
            "items": {
              "type": "string"
            }
          },
          "fromDate": {
            "type": "string",
            "example": "2025-03-15T14:30:00Z"
          },
          "toDate": {
            "type": "string",
            "example": "2025-03-15T14:30:00Z"
          },
          "company": {
            "type": "object",
            "properties": {
              "companyId": {
                "type": "integer",
                "example": 500123
              },
              "companyName": {
                "type": "string",
                "example": "Acme Corporation"
              },
              "companyPhone": {
                "type": "string",
                "example": "+1-555-555-1234"
              },
              "companyWebsite": {
                "type": "string",
                "example": "example_value"
              }
            },
            "required": [
              "companyId",
              "companyName",
              "companyPhone",
              "companyWebsite"
            ]
          }
        },
        "required": [
          "jobTitle",
          "managementLevel",
          "fromDate",
          "toDate",
          "company"
        ]
      }
    },
    "managementLevel": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "locationCompanyId": {
      "type": "integer",
      "example": 500123
    },
    "company": {
      "type": "object",
      "properties": {
        "division": {
          "type": "string",
          "example": "example_value"
        },
        "id": {
          "type": "integer",
          "example": 500123
        },
        "name": {
          "type": "string",
          "example": "Acme Corporation"
        },
        "descriptionList": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "object",
            "properties": {
              "description": {
                "type": "string",
                "example": "Enterprise software company"
              }
            },
            "required": [
              "description"
            ]
          }
        },
        "phone": {
          "type": "string",
          "example": "+1-555-555-1234"
        },
        "fax": {
          "type": "string",
          "example": "example_value"
        },
        "street": {
          "type": "string",
          "example": "example_value"
        },
        "city": {
          "type": "string",
          "example": "San Francisco"
        },
        "state": {
          "type": "string",
          "example": "CA"
        },
        "zipCode": {
          "type": "string",
          "example": "94105"
        },
        "country": {
          "type": "string",
          "example": "US"
        },
        "logo": {
          "type": "string",
          "example": "example_value"
        },
        "sicCodes": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "example": "500123"
              },
              "name": {
                "type": "string",
                "example": "Acme Corporation"
              }
            },
            "required": [
              "id",
              "name"
            ]
          }
        },
        "naicsCodes": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "example": "500123"
              },
              "name": {
                "type": "string",
                "example": "Acme Corporation"
              }
            },
            "required": [
              "id",
              "name"
            ]
          }
        },
        "website": {
          "type": "string",
          "example": "example_value"
        },
        "revenue": {
          "type": "string",
          "example": "example_value"
        },
        "revenueNumeric": {
          "type": "integer",
          "example": 100
        },
        "employeeCount": {
          "type": "integer",
          "example": 250
        },
        "type": {
          "type": "string",
          "example": "standard"
        },
        "ticker": {
          "type": "string",
          "example": "example_value"
        },
        "ranking": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "string"
          }
        },
        "socialMediaUrls": {
          "type": "array",
          "description": "",
          "example": "https://www.example.com",
          "items": {
            "type": "object",
            "properties": {
              "type": {
                "type": "string",
                "example": "standard"
              },
              "url": {
                "type": "string",
                "example": "https://www.example.com/resource"
              },
              "followerCount": {
                "type": "string",
                "example": "example_value"
              }
            },
            "required": [
              "type",
              "url",
              "followerCount"
            ]
          }
        },
        "primaryIndustry": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "string"
          }
        },
        "industries": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "string"
          }
        },
        "revenueRange": {
          "type": "string",
          "example": "example_value"
        },
        "employeeRange": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "division",
        "id",
        "name",
        "descriptionList",
        "phone",
        "fax",
        "street",
        "city",
        "state",
        "zipCode",
        "country",
        "logo",
        "sicCodes",
        "naicsCodes",
        "website",
        "revenue",
        "revenueNumeric",
        "employeeCount",
        "type",
        "ticker",
        "ranking",
        "socialMediaUrls",
        "primaryIndustry",
        "industries",
        "revenueRange",
        "employeeRange"
      ]
    }
  },
  "required": [
    "id",
    "firstName",
    "middleName",
    "lastName",
    "email",
    "hasCanadianEmail",
    "phone",
    "directPhoneDoNotCall",
    "street",
    "city",
    "region",
    "metroArea",
    "zipCode",
    "state",
    "country",
    "personHasMoved",
    "withinEu",
    "withinCalifornia",
    "withinCanada",
    "lastUpdatedDate",
    "noticeProvidedDate",
    "salutation",
    "suffix",
    "jobTitle",
    "jobFunction",
    "education",
    "hashedEmails",
    "picture",
    "mobilePhoneDoNotCall",
    "externalUrls",
    "contactAccuracyScore",
    "isDefunct",
    "employmentHistory",
    "managementLevel",
    "locationCompanyId",
    "company"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Data3"
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/zoominfo-data3"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.