# gg.postmatch.rocketleague.match

> Published by [jbhutch.bsky.social](https://lexicon.garden/identity/did:plc:i3mm6gpnxjjygdqt5utxopqw)

✓ This is the authoritative definition for this NSID.

## Description

One reporter's complete observation of a Rocket League match produced by the Postmatch live collector.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:i3mm6gpnxjjygdqt5utxopqw/gg.postmatch.rocketleague.match)
- [Documentation](https://lexicon.garden/lexicon/did:plc:i3mm6gpnxjjygdqt5utxopqw/gg.postmatch.rocketleague.match/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:i3mm6gpnxjjygdqt5utxopqw/gg.postmatch.rocketleague.match/examples)

## Definitions

### `gg.postmatch.rocketleague.match`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `arena` | `string` | Yes | Arena identifier observed in the final Game Data API snapshot. |
| `teams` | `array` | Yes | Exactly the blue and orange final scoreboard scores. |
| `capture` | `ref` → `gg.postmatch.rocketleague.defs#liveCapture` | Yes | Live-collector provenance for this complete report. |
| `matchId` | `string` | Yes | Observed Rocket League MatchGuid; a correlation candidate, not a globally unique or proven cross-repository join. |
| `players` | `array` | Yes | Final scoreboard players with explicit intrinsic side assignments. |
| `overtime` | `boolean` | Yes | Whether the final observed snapshot reports overtime. |
| `createdAt` | `string` (datetime) | Yes | Client-declared time when this report was assembled; not an authoritative game-server timestamp. |
| `playlistId` | `integer` | Yes | Numeric Rocket League playlist identifier; presentation labels are derived separately. |
| `winnerSide` | `ref` → `gg.postmatch.rocketleague.defs#side` | Yes | Winning side determined from the end evidence described by capture.endEvidence; retained alongside final scores. |
| `observedEndAt` | `string` (datetime) | Yes | Reporter-clock receipt time for the end evidence named by capture.endEvidence: MatchEnded itself or the decisive snapshot used during teardown. |
| `observedStartAt` | `string` (datetime) | Yes | Reporter-clock receipt time associated with the match's first lifecycle observation. |
| `reportingPlayer` | `ref` → `gg.postmatch.rocketleague.defs#reportingPlayer` | Yes |  |
| `clockRemainingSeconds` | `integer` | Yes | Game-clock seconds remaining in the final observed snapshot. |

## Raw Schema

```json
{
  "id": "gg.postmatch.rocketleague.match",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt",
          "matchId",
          "observedStartAt",
          "observedEndAt",
          "arena",
          "playlistId",
          "overtime",
          "clockRemainingSeconds",
          "winnerSide",
          "reportingPlayer",
          "teams",
          "players",
          "capture"
        ],
        "properties": {
          "arena": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "description": "Arena identifier observed in the final Game Data API snapshot."
          },
          "teams": {
            "type": "array",
            "items": {
              "ref": "gg.postmatch.rocketleague.defs#team",
              "type": "ref"
            },
            "maxLength": 2,
            "minLength": 2,
            "description": "Exactly the blue and orange final scoreboard scores."
          },
          "capture": {
            "ref": "gg.postmatch.rocketleague.defs#liveCapture",
            "type": "ref",
            "description": "Live-collector provenance for this complete report."
          },
          "matchId": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "description": "Observed Rocket League MatchGuid; a correlation candidate, not a globally unique or proven cross-repository join."
          },
          "players": {
            "type": "array",
            "items": {
              "ref": "gg.postmatch.rocketleague.defs#player",
              "type": "ref"
            },
            "maxLength": 8,
            "minLength": 2,
            "description": "Final scoreboard players with explicit intrinsic side assignments."
          },
          "overtime": {
            "type": "boolean",
            "description": "Whether the final observed snapshot reports overtime."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared time when this report was assembled; not an authoritative game-server timestamp."
          },
          "playlistId": {
            "type": "integer",
            "minimum": 0,
            "description": "Numeric Rocket League playlist identifier; presentation labels are derived separately."
          },
          "winnerSide": {
            "ref": "gg.postmatch.rocketleague.defs#side",
            "type": "ref",
            "description": "Winning side determined from the end evidence described by capture.endEvidence; retained alongside final scores."
          },
          "observedEndAt": {
            "type": "string",
            "format": "datetime",
            "description": "Reporter-clock receipt time for the end evidence named by capture.endEvidence: MatchEnded itself or the decisive snapshot used during teardown."
          },
          "observedStartAt": {
            "type": "string",
            "format": "datetime",
            "description": "Reporter-clock receipt time associated with the match's first lifecycle observation."
          },
          "reportingPlayer": {
            "ref": "gg.postmatch.rocketleague.defs#reportingPlayer",
            "type": "ref"
          },
          "clockRemainingSeconds": {
            "type": "integer",
            "minimum": 0,
            "description": "Game-clock seconds remaining in the final observed snapshot."
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "One reporter's complete observation of a Rocket League match produced by the Postmatch live collector."
}
```
