# Breaks

## Properties

<table><thead><tr><th width="269">Property</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td>score</td><td>Integer</td><td>Current score</td></tr><tr><td>breakSeq</td><td>Integer</td><td>Brake sequence number</td></tr><tr><td>playerId</td><td>UUID</td><td>Unique player id</td></tr><tr><td>playerName</td><td>String</td><td>Player's full name</td></tr><tr><td>breakStatus</td><td>String</td><td>Status of the break.</td></tr><tr><td>pottedBalls</td><td><a data-mention href="../../live-objects/potted-balls">potted-balls</a></td><td>Current status of potted balls</td></tr><tr><td>startTimestamp</td><td>String</td><td>date and time when the brake started</td></tr><tr><td>endTimestamp</td><td>String</td><td>date and time when the brake finished</td></tr></tbody></table>

{% code title="JSON Response" %}

```json
{
  "score": 0,
  "breakSeq": 1,
  "playerId": "e9c5eddd-e493-473e-b688-a3a2ea861800",
  "playerName": "Ken Doherty",
  "breakStatus": "Ended",
  "pottedBalls": {
      "redBalls": 0,
      "blueBalls": 0,
      "pinkBalls": 0,
      "blackBalls": 0,
      "brownBalls": 0,
      "greenBalls": 0,
      "yellowBalls": 0
  },
  "endTimestamp": "2023-06-30T17:18:52.254508Z",
  "startTimestamp": "2023-06-30T17:18:45.2074Z"
}
```

{% endcode %}
