ZoomInfo · Schema

FamilyNode

B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence

Properties

Name Type Description
companyId integer
name string
city string
state string
subUnitTypeInfo object
familyNodes array
View JSON Schema on GitHub

JSON Schema

zoominfo-family-node-schema.json Raw ↑
{
  "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"
    },
    "subUnitTypeInfo": {
      "type": "object",
      "properties": {
        "typeId": {
          "type": "integer",
          "example": 500123
        },
        "typeDescription": {
          "type": "string",
          "example": "Enterprise software company"
        }
      },
      "required": [
        "typeId",
        "typeDescription"
      ]
    },
    "familyNodes": {
      "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"
          },
          "subUnitTypeInfo": {
            "type": "object",
            "properties": {
              "typeId": {
                "type": "integer",
                "example": 500123
              },
              "typeDescription": {
                "type": "string",
                "example": "Enterprise software company"
              }
            },
            "required": [
              "typeId",
              "typeDescription"
            ]
          },
          "familyNodes": {
            "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"
                },
                "subUnitTypeInfo": {
                  "type": "object",
                  "properties": {
                    "typeId": {
                      "type": "object"
                    },
                    "typeDescription": {
                      "type": "object"
                    }
                  },
                  "required": [
                    "typeId",
                    "typeDescription"
                  ]
                }
              },
              "required": [
                "companyId",
                "name",
                "city",
                "state",
                "subUnitTypeInfo"
              ]
            }
          }
        },
        "required": [
          "companyId",
          "name",
          "city",
          "state",
          "subUnitTypeInfo"
        ]
      }
    }
  },
  "required": [
    "companyId",
    "name",
    "city",
    "state",
    "subUnitTypeInfo"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FamilyNode"
}