# gg.infinitetavern.adventurer.seasonJournal

> 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.seasonJournal)
- [Documentation](https://lexicon.garden/lexicon/did:plc:vxwgn77hp5ikvbiggm5es3rv/gg.infinitetavern.adventurer.seasonJournal/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:vxwgn77hp5ikvbiggm5es3rv/gg.infinitetavern.adventurer.seasonJournal/examples)

## Definitions

### `gg.infinitetavern.adventurer.seasonJournal`

**Type**: `record`

A chapter in an adventurer's season journal — tracking battles, victories, and ranking progress within a single campaign season. One record per adventurer per season, stored at rkey 'season-{N}'.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `wins` | `integer` | Yes | Championship victories (1st-place finishes) this season. |
| `gamesPlayed` | `integer` | Yes | Tavern battles fought this season. |
| `lastPlayedAt` | `string` (datetime) | Yes | ISO 8601 UTC timestamp of the most recent battle this season. |
| `seasonNumber` | `integer` | Yes | The campaign season number. |
| `bestPlacement` | `integer` | Yes | Finest standing achieved this season (1 = champion). |
| `currentRating` | `number` | Yes | Current tavern rating at time of this journal entry. |

## Raw Schema

```json
{
  "id": "gg.infinitetavern.adventurer.seasonJournal",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "seasonNumber",
          "gamesPlayed",
          "bestPlacement",
          "wins",
          "currentRating",
          "lastPlayedAt"
        ],
        "properties": {
          "wins": {
            "type": "integer",
            "minimum": 0,
            "description": "Championship victories (1st-place finishes) this season."
          },
          "gamesPlayed": {
            "type": "integer",
            "minimum": 1,
            "description": "Tavern battles fought this season."
          },
          "lastPlayedAt": {
            "type": "string",
            "format": "datetime",
            "description": "ISO 8601 UTC timestamp of the most recent battle this season."
          },
          "seasonNumber": {
            "type": "integer",
            "minimum": 1,
            "description": "The campaign season number."
          },
          "bestPlacement": {
            "type": "integer",
            "maximum": 8,
            "minimum": 1,
            "description": "Finest standing achieved this season (1 = champion)."
          },
          "currentRating": {
            "type": "number",
            "description": "Current tavern rating at time of this journal entry."
          }
        }
      },
      "description": "A chapter in an adventurer's season journal — tracking battles, victories, and ranking progress within a single campaign season. One record per adventurer per season, stored at rkey 'season-{N}'."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
