# Delayed Packets

## Overview

Delayed packets are packets that we have flagged as receiving late and are not being sent in real time. Any packets flagged with a Delayed status should be explicitly treated as non-live. A delayed packet is commonly noticed when connectivity issues are experienced locally at the given Tennis tournament.

## Packets

Delayed packets can occur at any time during the match, as long as we understand that the packet has not been sent in real time.

An example of a delayed packet:

* Delayed Packets JSON

```
{
  "server": {
    "team": "TeamB"
  },
  "timestamp": "2022-06-21T10:59:56.922Z",
  "nextServer": {
    "team": "TeamB"
  },
  "delayStatus": "DELAYED",
  "score": {
    "currentSetScore": {
      "gamesA": 0,
      "gamesB": 2
    },
    "overallSetScore": {
      "setsA": 0,
      "setsB": 1
    },
    "currentGameScore": {
      "pointsA": "15",
      "pointsB": "0",
      "gameType": "StandardGame"
    },
    "previousSetsScore": [
      {
        "gamesA": 3,
        "gamesB": 6
      }
    ]
  },
  "eventElementType": "PointScored",
  "matchTime": "00:53:26",
  "seqNum": 244,
  "details": {
    "scoredBy": "TeamA",
    "pointType": "Standard"
  }
}
```
