# social.respawn.backlog.item

> Published by [respawn.social](https://lexicon.garden/identity/did:plc:hiabolqnnpdnrb5grmdaaepg)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:hiabolqnnpdnrb5grmdaaepg/social.respawn.backlog.item)
- [Documentation](https://lexicon.garden/lexicon/did:plc:hiabolqnnpdnrb5grmdaaepg/social.respawn.backlog.item/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:hiabolqnnpdnrb5grmdaaepg/social.respawn.backlog.item/examples)

## Definitions

### `social.respawn.backlog.item`

**Type**: `record`

A single game in the actor's backlog. One record per game, keyed by IGDB id.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `game` | `ref` → `social.respawn.defs#gameRef` | Yes |  |
| `cover` | `ref` → `social.respawn.defs#cover` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `releaseDate` | `string` (datetime) | No |  |

## Raw Schema

```json
{
  "id": "social.respawn.backlog.item",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "game",
          "createdAt"
        ],
        "properties": {
          "game": {
            "ref": "social.respawn.defs#gameRef",
            "type": "ref"
          },
          "cover": {
            "ref": "social.respawn.defs#cover",
            "type": "ref"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "releaseDate": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A single game in the actor's backlog. One record per game, keyed by IGDB id."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
