ZoomInfo · JSON Structure

Zoominfo Location Match Structure

Type: object Properties: 3 Required: 3
B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence

LocationMatch is a JSON Structure definition published by ZoomInfo, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

companyId address addressStatus

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "LocationMatch",
  "properties": {
    "companyId": {
      "type": "integer"
    },
    "address": {
      "type": "object",
      "properties": {
        "street": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "state": {
          "type": "string"
        },
        "country": {
          "type": "string"
        },
        "zipCode": {
          "type": "string"
        }
      },
      "required": [
        "street",
        "city",
        "state",
        "country",
        "zipCode"
      ]
    },
    "addressStatus": {
      "type": "string"
    }
  },
  "required": [
    "companyId",
    "address",
    "addressStatus"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}