Intercom · Schema

Segment

AICustomer ServiceCustomer SupportMessaging

Properties

Name Type Description
type string
id string
name string
created_at integer
updated_at integer
person_type string
View JSON Schema on GitHub

JSON Schema

intercom-segment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Segment",
  "title": "Segment",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "created_at": {
      "type": "integer"
    },
    "updated_at": {
      "type": "integer"
    },
    "person_type": {
      "type": "string"
    }
  }
}