# Player Action Aggregates

## Properties

<table data-header-hidden><thead><tr><th width="269">Property</th><th>Description</th></tr></thead><tbody><tr><td>player<br><a href="broken-reference"><em><mark style="color:blue;">Player</mark></em></a></td><td>Detailed information of a team</td></tr><tr><td>gameActionAggregates<br><a href="broken-reference"><em><mark style="color:blue;">Action Aggregates []</mark></em></a></td><td>Aggregated event data that comprises of general attributes and event specific attributes and is grouped by a player</td></tr><tr><td>periodActionAggregates<br><a href="broken-reference"><em><mark style="color:blue;">Period Action Aggregates []</mark></em></a></td><td>Provides aggregated event data for each player within a given period</td></tr></tbody></table>

```json
{
          "player": {
            "id": "3e43f633-d337-4be5-9134-ccf6d9febc61",
            "name": "Senne Lynen"
          },
          "gameActionAggregates": [
            {
              "action": "Yellow Card",
              "actionId": 107,
              "actionAggregate": 1,
              "subActionAggregates": []
            }
          ],
          "periodActionAggregates": [
            {
              "period": 1,
              "aggregates": [
                {
                  "action": "Yellow Card",
                  "actionId": 107,
                  "actionAggregate": 1,
                  "subActionAggregates": []
                }
              ]
            }
          ]
        }
```
