For the complete documentation index, see llms.txt. This page is also available as Markdown.

Player Action Aggregates

Represents the aggregated statistics of match actions by each player.

Attributes

Name
Type
Description

player

Player details.

gameActionAggregates

The aggregated event data encompasses both general and event-specific attributes.

periodActionAggregates

Consolidated event data, organised by each match period.

Response 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
            }
          ]
        }
      ]
    }
  ]
}

Last updated

Was this helpful?