# gg.infinitetavern.adventurer.vaultTrophy

> Published by [infinitetavern.gg](https://lexicon.garden/identity/did:plc:vxwgn77hp5ikvbiggm5es3rv)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:vxwgn77hp5ikvbiggm5es3rv/gg.infinitetavern.adventurer.vaultTrophy)
- [Documentation](https://lexicon.garden/lexicon/did:plc:vxwgn77hp5ikvbiggm5es3rv/gg.infinitetavern.adventurer.vaultTrophy/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:vxwgn77hp5ikvbiggm5es3rv/gg.infinitetavern.adventurer.vaultTrophy/examples)

## Definitions

### `gg.infinitetavern.adventurer.vaultTrophy`

**Type**: `record`

A trophy in the Adventurer's Vault — a pinned game replay that the player is proud of. Max 5 per vault (server-enforced).

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` | No | Player's note about why this game was memorable. |
| `heroKey` | `string` | Yes | Internal key of the hero played (e.g. ember_king). |
| `heroName` | `string` | Yes | Display name of the hero played. |
| `pinnedAt` | `string` (datetime) | Yes | Timestamp when the trophy was pinned. |
| `placement` | `integer` | Yes | Final placement in the match (1 = champion). |
| `replayUri` | `string` (at-uri) | Yes | AT URI of the chronicle.replay record on the bot's PDS. |
| `chronicleUri` | `string` (at-uri) | Yes | AT URI of the player's own chronicle.entry for this match. |
| `seasonNumber` | `integer` | Yes | Season in which the match was played. |

## Raw Schema

```json
{
  "id": "gg.infinitetavern.adventurer.vaultTrophy",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "replayUri",
          "chronicleUri",
          "placement",
          "heroKey",
          "heroName",
          "seasonNumber",
          "pinnedAt"
        ],
        "properties": {
          "note": {
            "type": "string",
            "maxLength": 200,
            "description": "Player's note about why this game was memorable."
          },
          "heroKey": {
            "type": "string",
            "description": "Internal key of the hero played (e.g. ember_king)."
          },
          "heroName": {
            "type": "string",
            "description": "Display name of the hero played."
          },
          "pinnedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the trophy was pinned."
          },
          "placement": {
            "type": "integer",
            "maximum": 8,
            "minimum": 1,
            "description": "Final placement in the match (1 = champion)."
          },
          "replayUri": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI of the chronicle.replay record on the bot's PDS."
          },
          "chronicleUri": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI of the player's own chronicle.entry for this match."
          },
          "seasonNumber": {
            "type": "integer",
            "minimum": 1,
            "description": "Season in which the match was played."
          }
        }
      },
      "description": "A trophy in the Adventurer's Vault — a pinned game replay that the player is proud of. Max 5 per vault (server-enforced)."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
