# Player Action Aggregates

## Attributes

<table><thead><tr><th width="237.33333333333331">Name</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td>player</td><td><a data-mention href="../player">player</a></td><td>Player details.</td></tr><tr><td>gameActionAggregates</td><td><a data-mention href="game-action-aggregates">game-action-aggregates</a></td><td>The aggregated event data encompasses both general and event-specific attributes.</td></tr><tr><td>periodActionAggregates</td><td><a data-mention href="period-action-aggregates">period-action-aggregates</a></td><td>Consolidated event data, organised by each match period.</td></tr></tbody></table>

{% code title="Response JSON" %}

```json
{
  "player": {
    "id": "fef9d862-206c-4bce-87b9-2707a03ecb41",
    "name": "Eliran Atar"
  },
  "gameActionAggregates": [
    {
      "action": "Goal",
      "actionId": 104,
      "actionAggregate": 1,
      "subActionAggregates": [
        {
          "subAction": "Penalty Goal",
          "subActionId": 10401,
          "subActionAggregate": 1
        }
      ]
    },
    {
      "action": "Substitution Out",
      "actionId": 14,
      "actionAggregate": 1,
      "subActionAggregates": []
    }
  ],
  "periodActionAggregates": [
    {
      "type": "Regular",
      "label": "2nd half",
      "period": 2,
      "aggregates": [
        {
          "action": "Substitution Out",
          "actionId": 14,
          "actionAggregate": 1,
          "subActionAggregates": []
        }
      ]
    },
    {
      "type": "Regular",
      "label": "1st half",
      "period": 1,
      "aggregates": [
        {
          "action": "Goal",
          "actionId": 104,
          "actionAggregate": 1,
          "subActionAggregates": [
            {
              "subAction": "Penalty Goal",
              "subActionId": 10401,
              "subActionAggregate": 1
            }
          ]
        }
      ]
    }
  ]
}
```

{% endcode %}
