# app.standard-reader.list

> Published by [standard-reader.app](https://lexicon.garden/identity/did:plc:f4os2wz5fjl56xpwcvtnqu7m)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.list)
- [Documentation](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.list/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.list/examples)

## Definitions

### `app.standard-reader.list`

**Type**: `record`

A named, ordered, shareable list of publications (like a Bluesky user list, but for site.standard.publication subscriptions). Lists are one level deep; a publication may appear in multiple lists.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Display name of the list. |
| `createdAt` | `string` (datetime) | Yes | When the list was created. |
| `description` | `string` | No | Optional description shown on the list's public page. |
| `publications` | `array` | Yes | Ordered AT URIs of the site.standard.publication records in this list. |

## Raw Schema

```json
{
  "id": "app.standard-reader.list",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "publications",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 640,
            "description": "Display name of the list.",
            "maxGraphemes": 64
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the list was created."
          },
          "description": {
            "type": "string",
            "maxLength": 3000,
            "description": "Optional description shown on the list's public page.",
            "maxGraphemes": 300
          },
          "publications": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "maxLength": 500,
            "description": "Ordered AT URIs of the site.standard.publication records in this list."
          }
        }
      },
      "description": "A named, ordered, shareable list of publications (like a Bluesky user list, but for site.standard.publication subscriptions). Lists are one level deep; a publication may appear in multiple lists."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
