{ "$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 } } }