Application.ActionAdded{
  "$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": true,
  "concurrent": false,
  "enabled": true,
  "excludeFromHistory": false,
  "excludeFromPending": false,
  "group": "veniam proident",
  "id": "e940fefd-624e-4f17-86f4-cee5ba32bdc5",
  "name": "reprehenderit",
  "random": false
}
// Initialize the Streamer.bot WebSocket Client
const client = new StreamerbotClient();
// Subscribe to "Application.ActionAdded" events and register a callback
client.on('Application.ActionAdded', ({ 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);
});