Application.ActionUpdated{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "ApplicationActionEvent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "format": "guid"
    },
    "name": {
      "type": [
        "null",
        "string"
      ]
    },
    "group": {
      "type": [
        "null",
        "string"
      ]
    },
    "enabled": {
      "type": "boolean"
    },
    "random": {
      "type": "boolean"
    },
    "concurrent": {
      "type": "boolean"
    },
    "alwaysRun": {
      "type": "boolean"
    },
    "excludeFromHistory": {
      "type": "boolean"
    },
    "excludeFromPending": {
      "type": "boolean"
    }
  }
}
{
  "alwaysRun": false,
  "concurrent": false,
  "enabled": true,
  "excludeFromHistory": true,
  "excludeFromPending": true,
  "group": null,
  "id": "33cd0496-ffa2-444d-8b7e-a406ee667a93",
  "name": "aliquip consequat sunt dolore",
  "random": true
}
// Initialize the Streamer.bot WebSocket Client
const client = new StreamerbotClient();
// Subscribe to "Application.ActionUpdated" events and register a callback
client.on('Application.ActionUpdated', ({ 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);
});