Period

Represents the period's details.

Properties

NameTypeDescription

id

Integer

The period ID.

type

String

Match type.

label

String

String value describing the period.

start

String

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

end

String

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

homeTeamScore

Integer

The overall home team score.

awayTeamScore

Integer

The overall away team score.

homeTeamPeriodScore

Integer

The home team score in that period.

awayTeamPeriodScore

Integer

The away team score in that period.

Response JSON
{
    "id": 1,
    "type": "Regular",
    "label": "1st quarter",
    "start": "2023-09-30T01:04:56",
    "end": "2023-09-30T02:05:56",
    "awayTeamScore": 1,
    "homeTeamScore": 0,
    "awayTeamPeriodScore": 1,
    "homeTeamPeriodScore": 0
}