Kick.ChannelUpdate{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "KickChannelUpdateEvent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "channelId": {
      "type": [
        "null",
        "string"
      ]
    },
    "channel": {
      "type": [
        "null",
        "string"
      ]
    },
    "title": {
      "type": [
        "null",
        "string"
      ]
    },
    "categoryId": {
      "type": "integer",
      "format": "int32"
    },
    "categoryName": {
      "type": [
        "null",
        "string"
      ]
    },
    "categoryThumbnail": {
      "type": [
        "null",
        "string"
      ]
    },
    "oldTitle": {
      "type": [
        "null",
        "string"
      ]
    },
    "oldCategoryId": {
      "type": "integer",
      "format": "int32"
    },
    "oldCategoryName": {
      "type": [
        "null",
        "string"
      ]
    },
    "oldCategoryThumbnail": {
      "type": [
        "null",
        "string"
      ]
    },
    "is_test": {
      "type": "boolean"
    }
  }
}
{
  "categoryId": -55205435,
  "categoryName": "dolor commodo qui Lorem",
  "categoryThumbnail": "enim sunt aliquip dolore",
  "channel": "non",
  "channelId": null,
  "is_test": false,
  "oldCategoryId": -64563671,
  "oldCategoryName": null,
  "oldCategoryThumbnail": null,
  "oldTitle": null,
  "title": null
}
// Initialize the Streamer.bot WebSocket Client
const client = new StreamerbotClient();
// Subscribe to "Kick.ChannelUpdate" events and register a callback
client.on('Kick.ChannelUpdate', ({ event, data }) => {
  // Code here will run every time the event is received!
  console.log('Received event:', event.source, event.type);
  console.log('Event data:', data);
});