# social.popfeed.feed.list

> Published by [bookhive.buzz](https://lexicon.garden/identity/did:plc:enu2j5xjlqsjaylv3du4myh4)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/social.popfeed.feed.list)
- [Documentation](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/social.popfeed.feed.list/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/social.popfeed.feed.list/examples)

## Definitions

### `social.popfeed.feed.list`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | The name of the list. |
| `tags` | `array` | No | Optional array of tags for categorizing or describing the list. |
| `ordered` | `boolean` | No | Indicates whether the list is ordered or unordered. |
| `listType` | `string` | No | The type of list, e.g., 'watchlist', 'favorites', 'to-read', etc. |
| `createdAt` | `string` (datetime) | Yes | The timestamp when the list was created. |
| `itemOrder` | `array` | No | An array of item uris in the order they appear in the list. Stored separately from the items themselves to allow for efficient reordering without needing to update each item record. |
| `description` | `string` | No | Optional description of the list. |

## Raw Schema

```json
{
  "id": "social.popfeed.feed.list",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 100,
            "description": "The name of the list."
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 50
            },
            "description": "Optional array of tags for categorizing or describing the list."
          },
          "ordered": {
            "type": "boolean",
            "description": "Indicates whether the list is ordered or unordered."
          },
          "listType": {
            "type": "string",
            "maxLength": 50,
            "description": "The type of list, e.g., 'watchlist', 'favorites', 'to-read', etc."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "The timestamp when the list was created."
          },
          "itemOrder": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "uri"
            },
            "description": "An array of item uris in the order they appear in the list. Stored separately from the items themselves to allow for efficient reordering without needing to update each item record."
          },
          "description": {
            "type": "string",
            "maxLength": 500,
            "description": "Optional description of the list."
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
