# Timeout

### Fields

This `matchSate` object type has the following fields:

| Field name  | JSON type | Description                                              |
| ----------- | --------- | -------------------------------------------------------- |
| state       | string    | The current status of the game                           |
| isExpedited | Boolean   | Indicates whether the game has expedited (true or false) |
| team        | string    | The team that requesed the timeout                       |
| game        | int       | The current game                                         |
| timeoutType | string    | A simplified descriptor for why the timeout was called   |

```
"matchState": {
                "state": "Timeout",
                "isExpedited": false,
                "team": "TeamA",
                "game": 1,
                "timeoutType": "PlayerTimeout"
              }
```
