ZoomInfo · Schema
Data17
B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| ticker | string | |
| name | string | |
| website | string | |
| domainList | array | |
| logo | string | |
| socialMediaUrls | array | |
| revenue | integer | |
| employeeCount | integer | |
| numberOfContactsInZoomInfo | integer | |
| phone | string | |
| fax | string | |
| street | string | |
| city | string | |
| state | string | |
| zipCode | string | |
| country | string | |
| continent | string | |
| companyStatus | string | |
| companyStatusDate | string | |
| employeeGrowth | object | |
| type | string |
JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "integer",
"example": 500123
},
"ticker": {
"type": "string",
"example": "example_value"
},
"name": {
"type": "string",
"example": "Acme Corporation"
},
"website": {
"type": "string",
"example": "example_value"
},
"domainList": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
},
"logo": {
"type": "string",
"example": "example_value"
},
"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"
]
}
},
"revenue": {
"type": "integer",
"example": 100
},
"employeeCount": {
"type": "integer",
"example": 250
},
"numberOfContactsInZoomInfo": {
"type": "integer",
"example": 100
},
"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"
},
"continent": {
"type": "string",
"example": "example_value"
},
"companyStatus": {
"type": "string",
"example": "active"
},
"companyStatusDate": {
"type": "string",
"example": "active"
},
"employeeGrowth": {
"type": "object",
"properties": {
"oneYearGrowthRate": {
"type": "string",
"example": "example_value"
},
"twoYearGrowthRate": {
"type": "string",
"example": "example_value"
},
"employeeGrowthDataPoints": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object"
}
}
},
"required": [
"oneYearGrowthRate",
"twoYearGrowthRate",
"employeeGrowthDataPoints"
]
},
"type": {
"type": "string",
"example": "standard"
}
},
"required": [
"id",
"ticker",
"name",
"website",
"domainList",
"logo",
"socialMediaUrls",
"revenue",
"employeeCount",
"numberOfContactsInZoomInfo",
"phone",
"fax",
"street",
"city",
"state",
"zipCode",
"country",
"continent",
"companyStatus",
"companyStatusDate",
"employeeGrowth",
"type"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Data17"
}