Period

Represents the period's details.

Properties

id integer

The id.

label string

The string relating to the period.

start timestamp

of when the period has started, in RFC 3339 format.

end timestamp

of when the period has ended, in RFC 3339 format.

type string

The match .

awayTeamScore integer

The overall away team score.

homeTeamScore integer

The overall home team score.

awayTeamPeriodScore integer

The away team score in that period.

homeTeamPeriodScore integer

The home team score in that period.

Sample payload

"periods": [
                {
                    "id": 1,
                    "label": "1st quarter",
                    "type": "Regular",
                    "start": "2022-09-25T14:20:57",
                    "end": "2022-09-25T14:39:51",
                    "awayTeamScore": 15,
                    "homeTeamScore": 19,
                    "awayTeamPeriodScore": 15,
                    "homeTeamPeriodScore": 19
                }
            ]

Last updated