# xyz.opnshelf.list

> Published by [rowanpaul.opnshelf.social](https://lexicon.garden/identity/did:plc:u5ggziwgin2unsdw74yntrw7)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:u5ggziwgin2unsdw74yntrw7/xyz.opnshelf.list)
- [Documentation](https://lexicon.garden/lexicon/did:plc:u5ggziwgin2unsdw74yntrw7/xyz.opnshelf.list/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:u5ggziwgin2unsdw74yntrw7/xyz.opnshelf.list/examples)

## Definitions

### `xyz.opnshelf.list`

**Type**: `record`

A movie list for OpnShelf

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Display name of the list |
| `slug` | `string` | Yes | URL-friendly identifier |
| `createdAt` | `string` (datetime) | Yes | Record creation timestamp |
| `isDefault` | `boolean` | Yes | Whether this is a default list (watchlist/favorites) |
| `description` | `string` | No | Optional description of the list |

## Raw Schema

```json
{
  "id": "xyz.opnshelf.list",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "slug",
          "isDefault",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "description": "Display name of the list"
          },
          "slug": {
            "type": "string",
            "description": "URL-friendly identifier"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Record creation timestamp"
          },
          "isDefault": {
            "type": "boolean",
            "description": "Whether this is a default list (watchlist/favorites)"
          },
          "description": {
            "type": "string",
            "description": "Optional description of the list"
          }
        }
      },
      "description": "A movie list for OpnShelf"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
