ZoomInfo · Schema

GeoLocation

B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence

Properties

Name Type Description
location_long number
location_lat number
country_code string
province string
View JSON Schema on GitHub

JSON Schema

zoominfo-geo-location-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "location_long": {
      "type": "number",
      "example": 75.5
    },
    "location_lat": {
      "type": "number",
      "example": 75.5
    },
    "country_code": {
      "type": "string",
      "example": "US"
    },
    "province": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "location_long",
    "location_lat",
    "country_code",
    "province"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GeoLocation"
}