# PointStarted packets

### Fields

In addition to the basic packet fields point started packets have the following additional fields:

| Field name       | JSON type | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| ---------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| eventElementType | string    | <p>A discriminator field that can be used to identify the type of packet.</p><p>Possible values:</p><ul><li><a href="pointstarted-packets">PointStarted</a></li><li><a href="point-scored">PointScored</a></li><li><a href="../matchstatusupdate-packets">MatchStatusUpdate</a></li><li><a href="../matchfinished-packets">MatchFinished</a></li><li>SwapServe</li><li>SwapSides</li><li>Undo</li><li>Correction</li><li>Expedited</li><li>Sanction</li></ul> |
| game             | number    | The game in which the point was scored                                                                                                                                                                                                                                                                                                                                                                                                                        |
| id               | number    | Unique match identifier                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| seqNum           | number    | Sequence number of the packet. The first packet will use the number zero.                                                                                                                                                                                                                                                                                                                                                                                     |
| server           | string    | Name of serving player or team                                                                                                                                                                                                                                                                                                                                                                                                                                |
| nextServer       | string    | The team who will serve next                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| timestamp        | timestamp | The ISO 8601 UTC timestamp for when the packet occurred                                                                                                                                                                                                                                                                                                                                                                                                       |

### Sample

```
{
    "eventElementType": "PointStarted",
    "game": 1,
    "id": 99991,
    "seqNum": 6,
    "server": "TeamA",
    "nextServer: "TeamA",
    "timestamp": "2021-07-13T13:42:24.867Z"
}
```
