ZoomInfo · Schema
Data35
B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| phone | string | |
| fax | string | |
| street | string | |
| city | string | |
| state | string | |
| zipCode | string | |
| country | string | |
| company | object |
JSON Schema
{
"type": "object",
"properties": {
"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"
},
"company": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"example": 500123
},
"addressStatus": {
"type": "string",
"example": "123 Main Street"
},
"subUnitType": {
"type": "string",
"example": "standard"
},
"locationName": {
"type": "string",
"example": "Acme Corporation"
},
"locationEmployeeCount": {
"type": "integer",
"example": 250
}
},
"required": [
"id",
"addressStatus",
"subUnitType",
"locationName",
"locationEmployeeCount"
]
}
},
"required": [
"phone",
"fax",
"street",
"city",
"state",
"zipCode",
"country",
"company"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Data35"
}