Chatwoot · Schema

Label

Chatwoot Label schema

Customer SupportMessagingLive ChatOmni-channelConversationsContactsAgentsOpen Source

Properties

Name Type Description
id number The ID of the label
title string The title of the label
description string The description of the label
color string Hex color code for the label
show_on_sidebar boolean Whether the label should appear in the sidebar
View JSON Schema on GitHub

JSON Schema

label.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "The ID of the label"
    },
    "title": {
      "type": "string",
      "description": "The title of the label"
    },
    "description": {
      "type": "string",
      "description": "The description of the label"
    },
    "color": {
      "type": "string",
      "description": "Hex color code for the label"
    },
    "show_on_sidebar": {
      "type": "boolean",
      "description": "Whether the label should appear in the sidebar"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/chatwoot/main/json-schema/label.json",
  "title": "Label",
  "description": "Chatwoot Label schema"
}