Affinity · Schema

CompanyData

CRMRelationship IntelligencePrivate EquityVenture CapitalContactsOrganizationsOpportunitiesDeal Management

Properties

Name Type Description
id integer The company's unique identifier
name string The company's name
domain string The company's primary domain
View JSON Schema on GitHub

JSON Schema

affinity-companydata-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CompanyData",
  "type": "object",
  "properties": {
    "id": {
      "description": "The company's unique identifier",
      "type": "integer",
      "format": "int64",
      "minimum": 1,
      "maximum": 9007199254740991,
      "examples": [
        1
      ]
    },
    "name": {
      "description": "The company's name",
      "type": "string",
      "examples": [
        "Acme"
      ]
    },
    "domain": {
      "description": "The company's primary domain",
      "type": "string",
      "format": "hostname",
      "examples": [
        "acme.co"
      ],
      "nullable": true
    }
  },
  "required": [
    "domain",
    "id",
    "name"
  ],
  "additionalProperties": false
}