PenaltyPoints packets

Fields

In addition to the basic packet fields, penalty points packets have the following additional fields:

Field name

JSON type

Description

team

string

The team to which the penalty point(s) are being applied

game

int

The game in which the penalty was applied

scores

array (scores)

An array of the game scores up after the penalty

matchScore

array (match score)

An array of the match score up until this point

Sample

{
    "eventElementType": "PenaltyPoint",
    "id": 0,
    "seqNum": 26,
    "team": "TeamA",
    "matchScore": {
        "pointsA": 0,
        "pointsB": 0
    },
    "scores": [
        {
            "pointsA": 0,
            "pointsB": 11
        },
        {
            "pointsA": 5,
            "pointsB": 5
        },
        {
            "pointsA": 0,
            "pointsB": 0
        },
        {
            "pointsA": 0,
            "pointsB": 0
        },
        {
            "pointsA": 0,
            "pointsB": 0
        }
    ],
    "game": 2,
    "timestamp": "1970-01-01T00:00:00.000Z"
}

Last updated