Events Property
This property should be formatted as an array of objects. In each object, one must specify either a single event or a combination of events.
To specify a single event, the inner object should look like the following example:
{
"category": "File Operations",
"name":"Open"
}
To specify a combination of events, the inner object should look like the following:
{
"combiLabel": "Open and Save",
"combiArray": [
{
"categoryType": "string",
"nameType": "string",
"category": "File Operations",
"name": "Open"
},
{
"categoryType": "string",
"nameType": "string",
"category": "File Operations",
"name": "Save",
}
]
}
In the above example, we are combining the data from the Open and Save events, both under the File Operations category. In this example, “string” is being used both as categoryType and nameType. The other possible value is “regex”. The following example shows a case where all events under the File Operations category are being combined:
{
"combiLabel": "All File Operations",
"combiArray": [
{
"categoryType": "string",
"nameType": "regex",
"category": "File Operations",
"name": ".*"
}
]
}
The combiLabel property should contain any user-friendly unique string value to identify each events combination.