Hunter · Schema
CompanyGeoLocation
Contact DiscoveryEmailEmail VerificationLead GenerationProspectingSales Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| streetNumber | stringnull | |
| streetName | stringnull | |
| subPremise | stringnull | |
| streetAddress | stringnull | |
| city | stringnull | |
| postalCode | stringnull | |
| state | stringnull | |
| stateCode | stringnull | |
| country | stringnull | |
| countryCode | stringnull | |
| lat | numbernull | |
| lng | numbernull |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CompanyGeoLocation",
"title": "CompanyGeoLocation",
"type": "object",
"properties": {
"streetNumber": {
"type": [
"string",
"null"
],
"example": "example_value"
},
"streetName": {
"type": [
"string",
"null"
],
"example": "example_value"
},
"subPremise": {
"type": [
"string",
"null"
],
"example": "example_value"
},
"streetAddress": {
"type": [
"string",
"null"
],
"example": "example_value"
},
"city": {
"type": [
"string",
"null"
],
"example": "example_value"
},
"postalCode": {
"type": [
"string",
"null"
],
"example": "example_value"
},
"state": {
"type": [
"string",
"null"
],
"example": "example_value"
},
"stateCode": {
"type": [
"string",
"null"
],
"example": "example_value"
},
"country": {
"type": [
"string",
"null"
],
"example": "example_value"
},
"countryCode": {
"type": [
"string",
"null"
],
"example": "example_value"
},
"lat": {
"type": [
"number",
"null"
],
"example": "example_value"
},
"lng": {
"type": [
"number",
"null"
],
"example": "example_value"
}
}
}