Hunter · Schema

GeoLocation

Contact DiscoveryEmailEmail VerificationLead GenerationProspectingSales Intelligence

Properties

Name Type Description
city ['string', 'null']
state ['string', 'null']
stateCode ['string', 'null']
country ['string', 'null']
countryCode ['string', 'null']
lat ['number', 'null']
lng ['number', 'null']
View JSON Schema on GitHub

JSON Schema

hunter-geo-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GeoLocation",
  "type": "object",
  "properties": {
    "city": {
      "type": "['string', 'null']"
    },
    "state": {
      "type": "['string', 'null']"
    },
    "stateCode": {
      "type": "['string', 'null']"
    },
    "country": {
      "type": "['string', 'null']"
    },
    "countryCode": {
      "type": "['string', 'null']"
    },
    "lat": {
      "type": "['number', 'null']"
    },
    "lng": {
      "type": "['number', 'null']"
    }
  }
}