For the complete documentation index, see llms.txt. This page is also available as Markdown.

Packets

Fields

All packets have at least the following fields, and may have additional fields depending on the value of eventElementType:

Field name
JSON type
Description

id

number

The unique match identifier

eventElementType

string

A discriminator field that can be used to identify the type of packet. Possible values:

  • PointScored

  • PointStarted

  • Correction

  • Injury

  • MatchStatusUpdate

  • PointScored

  • Sanction

  • Undo

seqNum

number

Sequence number of the packet. The first packet will use the number zero.

timestamp

string

The ISO 8601 UTC timestamp for when the packet occurred

Sample

{
  "eventElementType": "MatchStatusUpdate",
  "id": 2345,
  "seqNum": 19,
  "timestamp": "2020-09-30T18:43:21Z",
}

Last updated

Was this helpful?