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": "3rd frame",
  "period": 3,
  "aggregates": [
    {
      "action": "Foul",
      "actionId": 308,
      "actionAggregate": 4,
      "subActionAggregates": [
        {
          "subAction": "4 Points",
          "subActionId": 30801,
          "subActionAggregate": 4
        }
       ]
    }
  ]
}

Last updated