Unified.to · Schema

CrmCompany

A company represents an organization that optionally is associated with a deal and/or contacts

IntegrationsUnified API

Properties

Name Type Description
id string
created_at string
updated_at string
name string
deal_ids object
contact_ids object
emails object
telephones object
websites object
address object
is_active boolean
tags object
description string
industry string
link_urls object
employees number
timezone string
user_id string
metadata object
domains object
raw object
View JSON Schema on GitHub

JSON Schema

unified-to-crm-company-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-crm-company-schema.json",
  "title": "CrmCompany",
  "description": "A company represents an organization that optionally is associated with a deal and/or contacts",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "name": {
      "type": "string"
    },
    "deal_ids": {
      "$ref": "#/components/schemas/property_CrmCompany_deal_ids"
    },
    "contact_ids": {
      "$ref": "#/components/schemas/property_CrmCompany_contact_ids"
    },
    "emails": {
      "$ref": "#/components/schemas/property_CrmCompany_emails"
    },
    "telephones": {
      "$ref": "#/components/schemas/property_CrmCompany_telephones"
    },
    "websites": {
      "$ref": "#/components/schemas/property_CrmCompany_websites"
    },
    "address": {
      "$ref": "#/components/schemas/property_CrmCompany_address"
    },
    "is_active": {
      "type": "boolean"
    },
    "tags": {
      "$ref": "#/components/schemas/property_CrmCompany_tags"
    },
    "description": {
      "type": "string"
    },
    "industry": {
      "type": "string"
    },
    "link_urls": {
      "$ref": "#/components/schemas/property_CrmCompany_link_urls"
    },
    "employees": {
      "type": "number"
    },
    "timezone": {
      "type": "string"
    },
    "user_id": {
      "type": "string"
    },
    "metadata": {
      "$ref": "#/components/schemas/property_CrmCompany_metadata"
    },
    "domains": {
      "$ref": "#/components/schemas/property_CrmCompany_domains"
    },
    "raw": {
      "type": "object",
      "additionalProperties": true
    }
  }
}