Period Action Aggregates

Represents the aggregated statistics of all team actions for a given period within a match.

Attributes

Name
Type
Description

type

string

The period of the match.

label

integer

Period name.

period

integer

Match type.

aggregates

General and event-specific attributes.

Response JSON
{
  "type": "Regular",
  "label": "2nd half",
  "period": 2,
  "aggregates": [
    {
      "action": "Shot",
      "actionAggregate": 17,
      "actionId": 111,
      "subActionAggregates": [
        {
          "subAction": "Wide/Over (Off Target)",
          "subActionAggregate": 7,
          "subActionId": 11105
        }
      ]
    }
  ]
}

Last updated