ZoomInfo · Schema
Data46
B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| firstName | string | |
| lastName | string | |
| title | string | |
| employmentHistory | array | |
| emailAddresses | array | |
| pastEmailAddresses | array | |
| withinEu | boolean | |
| hasCanadianEmail | string | |
| withinCalifornia | boolean | |
| withinCanada | boolean | |
| noticeProvidedDate | string | |
| hasMoved | string | |
| looksLikeEu | string | |
| looksLikeCalifornia | string | |
| looksLikeCanada | string | |
| company | object |
JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "integer",
"example": 500123
},
"firstName": {
"type": "string",
"example": "Acme Corporation"
},
"lastName": {
"type": "string",
"example": "Acme Corporation"
},
"title": {
"type": "string",
"example": "Vice President of Sales"
},
"employmentHistory": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"companyName": {
"type": "string",
"example": "Acme Corporation"
},
"title": {
"type": "string",
"example": "Vice President of Sales"
}
},
"required": [
"companyName",
"title"
]
}
},
"emailAddresses": {
"type": "array",
"description": "",
"example": "[email protected]",
"items": {
"type": "string"
}
},
"pastEmailAddresses": {
"type": "array",
"description": "",
"example": "[email protected]",
"items": {
"type": "string"
}
},
"withinEu": {
"type": "boolean",
"example": true
},
"hasCanadianEmail": {
"type": "string",
"example": "[email protected]"
},
"withinCalifornia": {
"type": "boolean",
"example": true
},
"withinCanada": {
"type": "boolean",
"example": true
},
"noticeProvidedDate": {
"type": "string",
"example": "2025-03-15T14:30:00Z"
},
"hasMoved": {
"type": "string",
"example": "example_value"
},
"looksLikeEu": {
"type": "string",
"example": "example_value"
},
"looksLikeCalifornia": {
"type": "string",
"example": "example_value"
},
"looksLikeCanada": {
"type": "string",
"example": "example_value"
},
"company": {
"type": "object",
"properties": {
"name": {
"type": "string",
"example": "Acme Corporation"
}
},
"required": [
"name"
]
}
},
"required": [
"id",
"firstName",
"lastName",
"title",
"employmentHistory",
"emailAddresses",
"pastEmailAddresses",
"withinEu",
"hasCanadianEmail",
"withinCalifornia",
"withinCanada",
"noticeProvidedDate",
"hasMoved",
"looksLikeEu",
"looksLikeCalifornia",
"looksLikeCanada",
"company"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Data46"
}