Intercom · Schema

Article

AICustomer ServiceCustomer SupportMessaging

Properties

Name Type Description
type string
id string
title string
description string
body string
author_id integer
state string
created_at integer
updated_at integer
View JSON Schema on GitHub

JSON Schema

intercom-article-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Article",
  "title": "Article",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "body": {
      "type": "string"
    },
    "author_id": {
      "type": "integer"
    },
    "state": {
      "type": "string"
    },
    "created_at": {
      "type": "integer"
    },
    "updated_at": {
      "type": "integer"
    }
  }
}