Application.CommandAdded{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "ApplicationCommandEvent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "format": "guid"
    },
    "name": {
      "type": [
        "null",
        "string"
      ]
    },
    "group": {
      "type": [
        "null",
        "string"
      ]
    },
    "enabled": {
      "type": "boolean"
    }
  }
}
{
  "enabled": false,
  "group": null,
  "id": "084c9c0e-340d-47a6-917c-34057256028b",
  "name": null
}
// Initialize the Streamer.bot WebSocket Client
const client = new StreamerbotClient();
// Subscribe to "Application.CommandAdded" events and register a callback
client.on('Application.CommandAdded', ({ 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);
});