# Game Action Aggregates

## Attributes

<table><thead><tr><th width="223">Name</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td>action</td><td>string</td><td>Name of the action.</td></tr><tr><td>actionId</td><td>integer</td><td>Action ID.</td></tr><tr><td>actionAggregate</td><td>integer</td><td>Frequency of a specific action recorded during a match.</td></tr><tr><td>subActionAggregates<br></td><td><a data-mention href="sub-action-aggregates">sub-action-aggregates</a></td><td>Detailed information on the aggregated action.</td></tr></tbody></table>

{% code title="Response JSON" %}

```json
{
  "action": "Foul",
  "actionId": 308,
  "actionAggregate": 7,
  "subActionAggregates": [
    {
      "subAction": "4 Points",
      "subActionId": 30801,
      "subActionAggregate": 7
    }
  ]
}
```

{% endcode %}
