ZoomInfo · Schema

Result15

B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence

Properties

Name Type Description
input object
data array
View JSON Schema on GitHub

JSON Schema

zoominfo-result15-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "input": {
      "type": "object",
      "properties": {
        "companyname": {
          "type": "string",
          "example": "Acme Corporation"
        },
        "companyid": {
          "type": "integer",
          "example": 500123
        }
      }
    },
    "data": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "parentage": {
            "type": "array",
            "description": "",
            "example": [],
            "items": {
              "type": "object"
            }
          },
          "familyTree": {
            "type": "array",
            "description": "",
            "example": [],
            "items": {
              "type": "object",
              "properties": {
                "companyId": {
                  "type": "integer",
                  "example": 500123
                },
                "name": {
                  "type": "string",
                  "example": "Acme Corporation"
                },
                "city": {
                  "type": "string",
                  "example": "San Francisco"
                },
                "state": {
                  "type": "string",
                  "example": "CA"
                },
                "familyNodes": {
                  "type": "array",
                  "description": "",
                  "example": [],
                  "items": {
                    "type": "object"
                  }
                }
              },
              "required": [
                "companyId",
                "name",
                "city",
                "state",
                "familyNodes"
              ]
            }
          },
          "companyId": {
            "type": "integer",
            "example": 500123
          }
        },
        "required": [
          "parentage",
          "familyTree",
          "companyId"
        ]
      }
    }
  },
  "required": [
    "input",
    "data"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Result15"
}