Vessel · Schema

Vessel CRM Contact

A normalized CRM contact record from the Vessel unified CRM API (Salesforce, HubSpot, Zoho, Pipedrive, etc.)

CRMEmbedded IntegrationsGTMIntegrationsiPaaSSales EngagementUnified API

Properties

Name Type Description
id string Unique contact ID (normalized to string across all CRM systems)
firstName string Contact first name
lastName string Contact last name
email string Contact email address
phone string Contact phone number
title string Contact job title
company string Contact company name
createdAt string ISO 8601 creation timestamp (normalized across all CRM systems)
updatedAt string ISO 8601 last update timestamp
View JSON Schema on GitHub

JSON Schema

vessel-contact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/vessel/refs/heads/main/json-schema/vessel-contact-schema.json",
  "title": "Vessel CRM Contact",
  "description": "A normalized CRM contact record from the Vessel unified CRM API (Salesforce, HubSpot, Zoho, Pipedrive, etc.)",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique contact ID (normalized to string across all CRM systems)"
    },
    "firstName": {
      "type": "string",
      "description": "Contact first name"
    },
    "lastName": {
      "type": "string",
      "description": "Contact last name"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Contact email address"
    },
    "phone": {
      "type": "string",
      "description": "Contact phone number"
    },
    "title": {
      "type": "string",
      "description": "Contact job title"
    },
    "company": {
      "type": "string",
      "description": "Contact company name"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 creation timestamp (normalized across all CRM systems)"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 last update timestamp"
    }
  },
  "required": ["id"]
}