# Game Action Aggregates

## Attributes

| Name                | Type                                                                                                           | Description                                             |
| ------------------- | -------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------- |
| action              | string                                                                                                         | Name of the action.                                     |
| actionId            | integer                                                                                                        | Action ID.                                              |
| actionAggregate     | integer                                                                                                        | Frequency of a specific action recorded during a match. |
| subActionAggregates | [sub-action-aggregates](https://docs.sportradar.com/soccer/objects/statistics/sub-action-aggregates "mention") | Detailed information of the aggregated action.          |

{% code title="Response JSON" %}

```json
{
    "action": "Penalty Awarded",
    "actionId": 106,
    "actionAggregate": 1,
    "subActionAggregates": [
        {
            "subAction": "Foul",
            "subActionId": 10601,
            "subActionAggregate": 1
        }
    ]
}
```

{% endcode %}
