For the complete documentation index, see llms.txt. This page is also available as Markdown.

Action Aggregates

Represents the aggregated statistics of all match actions by action types.

Properties

action string

Action type name

actionId integer

Unique id of a specific action type

actionAggregate integer

Number of times a specific action was recorded during a match

subActionAggregates Sub Action Aggregates

Detailed information of record sub action types

{
          "action": "Shot",
          "actionId": 111,
          "actionAggregate": 8,
          "subActionAggregates": [
            {
              "subAction": "Blocked",
              "subActionId": 11103,
              "subActionAggregate": 4
            },
            {
              "subAction": "Wide/Over (Off Target)",
              "subActionId": 11105,
              "subActionAggregate": 3
            },
            {
              "subAction": "On Target",
              "subActionId": 11102,
              "subActionAggregate": 1
            }
          ]
}

Last updated

Was this helpful?