Unified.to · Schema

EnrichPerson

A person object from an enrichment integration

IntegrationsUnified API

Properties

Name Type Description
address object
bio string
birthdate string
company string
company_domain string
created_at string
emails object
facebook_url string
first_name string
gender string
github_url string
github_username string
id string
image_url string
last_name string
linkedin_url string
name string
raw object
telephones object
timezone string
title string
twitter_handle string
twitter_url string
updated_at string
utc_offset number
work_histories object
View JSON Schema on GitHub

JSON Schema

unified-to-enrichperson-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnrichPerson",
  "title": "EnrichPerson",
  "description": "A person object from an enrichment integration",
  "properties": {
    "address": {
      "$ref": "#/components/schemas/property_EnrichPerson_address"
    },
    "bio": {
      "type": "string"
    },
    "birthdate": {
      "type": "string"
    },
    "company": {
      "type": "string"
    },
    "company_domain": {
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "emails": {
      "$ref": "#/components/schemas/property_EnrichPerson_emails"
    },
    "facebook_url": {
      "type": "string"
    },
    "first_name": {
      "type": "string"
    },
    "gender": {
      "enum": [
        "MALE",
        "FEMALE"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "github_url": {
      "type": "string"
    },
    "github_username": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "image_url": {
      "type": "string"
    },
    "last_name": {
      "type": "string"
    },
    "linkedin_url": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "telephones": {
      "$ref": "#/components/schemas/property_EnrichPerson_telephones"
    },
    "timezone": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "twitter_handle": {
      "type": "string"
    },
    "twitter_url": {
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    },
    "utc_offset": {
      "type": "number"
    },
    "work_histories": {
      "$ref": "#/components/schemas/property_EnrichPerson_work_histories"
    }
  },
  "type": "object"
}