Periods Object

Field Name
Type
Example
Description

id

integer

1

The period id 1 - 1st quarter 2 - 2nd quarter 3 - 3rd quarter 4 - 4th quarter 5 - overtime (optional)

label

string

1st quarter

The string value relating to the period

type

string

Regular

The match type

start

date / time

2022-09-25T14:39:51

The start date and time of that period

end

date / time

2022-09-25T14:20:57e

The end date and time of that period

awayTeamScore

integer

15

The overall away team score

homeTeamScore

integer

19

The overall home team score

awayTeamPeriodScore

integer

15

The away team score in that period

homeTeamPeriodScore

integer

19

The home team score in that period

"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