# Correction (Score Edit)

### Fields

In addition to the basic packet fields undo 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 correct scores                  |
| matchScore | array (match score) | An array of the current match score after correction |

```
{
    "eventElementType": "Correction",
    "id": 0,
    "seqNum": 27,
    "scores": [
        {
            "pointsA": 0,
            "pointsB": 11
        },
        {
            "pointsA": 5,
            "pointsB": 4
        },
        {
            "pointsA": 0,
            "pointsB": 0
        },
        {
            "pointsA": 0,
            "pointsB": 0
        },
        {
            "pointsA": 0,
            "pointsB": 0
        }
    ],
    "matchScore": {
        "pointsA": 0,
        "pointsB": 1
    },
    "game": 2,
    "timestamp": "1970-01-01T00:00:00.000Z",
}
```
