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

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