# at.postgame.list.item

> Published by [postgame.at](https://lexicon.garden/identity/did:plc:crwol3wvv2w2lvvognhvd5cm)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:crwol3wvv2w2lvvognhvd5cm/at.postgame.list.item)
- [Documentation](https://lexicon.garden/lexicon/did:plc:crwol3wvv2w2lvvognhvd5cm/at.postgame.list.item/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:crwol3wvv2w2lvvognhvd5cm/at.postgame.list.item/examples)

## Definitions

### `at.postgame.list.item`

**Type**: `record`

A single game entry within a user's list

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `game` | `ref` → `at.postgame.game#gameRef` | Yes |  |
| `award` | `string` | No |  |
| `addedAt` | `string` (datetime) | Yes |  |
| `gameUri` | `string` (at-uri) | No | AT URI to the canonical game record; mirrors game.identifiers.atUri for cross-service compatibility |
| `listUri` | `string` (at-uri) | Yes | The at.postgame.list this item belongs to |
| `position` | `integer` | No |  |

## Raw Schema

```json
{
  "id": "at.postgame.list.item",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "listUri",
          "game",
          "addedAt"
        ],
        "properties": {
          "game": {
            "ref": "at.postgame.game#gameRef",
            "type": "ref"
          },
          "award": {
            "type": "string",
            "maxLength": 128
          },
          "addedAt": {
            "type": "string",
            "format": "datetime"
          },
          "gameUri": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI to the canonical game record; mirrors game.identifiers.atUri for cross-service compatibility"
          },
          "listUri": {
            "type": "string",
            "format": "at-uri",
            "description": "The at.postgame.list this item belongs to"
          },
          "position": {
            "type": "integer",
            "minimum": 1
          }
        }
      },
      "description": "A single game entry within a user's list"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
