ZoomInfo · JSON Structure

Zoominfo Employment History Structure

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

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

Properties

jobTitle managementLevel fromDate toDate company

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "EmploymentHistory",
  "properties": {
    "jobTitle": {
      "type": "string"
    },
    "managementLevel": {
      "type": "array",
      "description": "",
      "items": {
        "type": "string"
      }
    },
    "fromDate": {
      "type": "string"
    },
    "toDate": {
      "type": "string"
    },
    "company": {
      "type": "object",
      "properties": {
        "companyId": {
          "type": "integer"
        },
        "companyName": {
          "type": "string"
        },
        "companyPhone": {
          "type": "string"
        },
        "companyWebsite": {
          "type": "string"
        }
      },
      "required": [
        "companyId",
        "companyName",
        "companyPhone",
        "companyWebsite"
      ]
    }
  },
  "required": [
    "jobTitle",
    "managementLevel",
    "fromDate",
    "toDate",
    "company"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}