# 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/volleyball/objects/statistics/sub-action-aggregates "mention") | Detailed information of the aggregated action.          |

{% code title="Response JSON" %}

```json
{
    "action": "Point Started",
    "actionId": 401,
    "actionAggregate": 53,
    "subActionAggregates": [...]
}
```

{% endcode %}
