ZoomInfo · JSON Structure

Zoominfo Result7 Structure

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

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

Properties

input data

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Result7",
  "properties": {
    "input": {
      "type": "object",
      "properties": {
        "companycity": {
          "type": "string"
        },
        "companyname": {
          "type": "string"
        },
        "companystate": {
          "type": "string"
        },
        "companystreet": {
          "type": "string"
        },
        "companywebsite": {
          "type": "string"
        }
      },
      "required": [
        "companycity",
        "companyname",
        "companystate",
        "companystreet",
        "companywebsite"
      ]
    },
    "data": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "locationMatch": {
            "type": "object",
            "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"
            ]
          },
          "website": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "city": {
            "type": "string"
          }
        },
        "required": [
          "id",
          "name",
          "locationMatch",
          "website",
          "state",
          "city"
        ]
      }
    }
  },
  "required": [
    "input",
    "data"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}