Intercom · Schema

Company

AICustomer ServiceCustomer SupportMessaging

Properties

Name Type Description
type string
id string
company_id string
name string
plan object
size integer
industry string
created_at integer
View JSON Schema on GitHub

JSON Schema

intercom-company-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Company",
  "title": "Company",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "company_id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "plan": {
      "type": "object"
    },
    "size": {
      "type": "integer"
    },
    "industry": {
      "type": "string"
    },
    "created_at": {
      "type": "integer"
    }
  }
}