Dixa · Schema

Tag

Customer ServiceConversationalOmnichannelCXHelp DeskChatKnowledge Base

Properties

Name Type Description
id string
name string
color string
state string values: [Active, Inactive]
View JSON Schema on GitHub

JSON Schema

tag.json Raw ↑
{
  "title": "Tag",
  "type": "object",
  "required": [
    "id",
    "name",
    "state"
  ],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "state": {
      "description": "values: [Active, Inactive]",
      "type": "string"
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}