Period Action Aggregates

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

Properties

Name
Type
Description

type

String

label

String

period

Integer

The period of the match

aggregates

Aggregates

Aggregated event data that comprises of general attributes and event specific attributes and is grouped by sport specific action types.

Response JSON
{
    "type": "Regular",
    "label": "2nd period",
    "period": 2,
    "aggregates": [
        {
            "action": "Face Off Won",
            "actionId": 802,
            "actionAggregate": 2,
            "subActionAggregates": []
         },
         {
            "action": "Hit",
            "actionId": 805,
            "actionAggregate": 1,
            "subActionAggregates": []
         }
    ]
}

Last updated