# SwapServe packets

### Fields

In addition to the basic packet fields swap serve packets have the following additional fields:

| Field Name | JSON type           | Description                                     |
| ---------- | ------------------- | ----------------------------------------------- |
| game       | int                 | The game in which the point was scored          |
| scores     | array (scores)      | An array of the game scores up until this point |
| matchScore | array (match score) | An array of the match score up until this point |

```
{
    "eventElementType": "SwapServe",
    "game": 1,
    "id": 99991,
    "matchScore": {
        "pointsA": 0,
        "pointsB": 0
    },
    "scores": [],
    "seqNum": 2,
    "timestamp": "2021-07-13T13:41:29.944Z"
}
```
