Game Action Aggregates

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

Properties

NameTypeDescription

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

Detailed information of record sub action types

{
          "action": "Shot",
          "actionId": 804,
          "actionAggregate": 6,
          "subActionAggregates": [
            {
              "subAction": "Blocked",
              "subActionId": 80403,
              "subActionAggregate": 2
            },
            {
              "subAction": "On Target",
              "subActionId": 80405,
              "subActionAggregate": 4
            }
          ]
}

Last updated