# social.respawn.list

> 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.list)
- [Documentation](https://lexicon.garden/lexicon/did:plc:hiabolqnnpdnrb5grmdaaepg/social.respawn.list/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:hiabolqnnpdnrb5grmdaaepg/social.respawn.list/examples)

## Definitions

### `social.respawn.list#item`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `game` | `ref` → `social.respawn.defs#gameRef` | Yes |  |
| `cover` | `ref` → `social.respawn.defs#cover` | No |  |

### `social.respawn.list`

**Type**: `record`

A curated list of games. Interaction settings are controlled by a social.respawn.feed.gate record with the same rkey.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `slug` | `string` | Yes | URL slug, unique within the actor's repo. Generated from the name. |
| `items` | `array` | No |  |
| `ranked` | `boolean` | No | Whether item order represents a ranking. |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `ref` → `#description` | No |  |

### `social.respawn.list#description`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes |  |
| `facets` | `array` | No |  |

## Raw Schema

```json
{
  "id": "social.respawn.list",
  "defs": {
    "item": {
      "type": "object",
      "required": [
        "game"
      ],
      "properties": {
        "game": {
          "ref": "social.respawn.defs#gameRef",
          "type": "ref"
        },
        "cover": {
          "ref": "social.respawn.defs#cover",
          "type": "ref"
        }
      }
    },
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "slug",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 1000,
            "maxGraphemes": 100
          },
          "slug": {
            "type": "string",
            "maxLength": 200,
            "description": "URL slug, unique within the actor's repo. Generated from the name."
          },
          "items": {
            "type": "array",
            "items": {
              "ref": "#item",
              "type": "ref"
            },
            "maxLength": 1000
          },
          "ranked": {
            "type": "boolean",
            "description": "Whether item order represents a ranking."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "ref": "#description",
            "type": "ref"
          }
        }
      },
      "description": "A curated list of games. Interaction settings are controlled by a social.respawn.feed.gate record with the same rkey."
    },
    "description": {
      "type": "object",
      "required": [
        "text"
      ],
      "properties": {
        "text": {
          "type": "string",
          "maxLength": 30000,
          "maxGraphemes": 3000
        },
        "facets": {
          "type": "array",
          "items": {
            "ref": "social.respawn.richtext.facet",
            "type": "ref"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
