# blue.registry.list

> Published by [registry.blue](https://lexicon.garden/identity/did:plc:4olik72a346dcc2hppt7ioo4)

✓ This is the authoritative definition for this NSID.

## Description

A wishlist or registry containing items.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.list)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.list/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.list/examples)

## Definitions

### `blue.registry.list`

**Type**: `record`

A wishlist or registry.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | Yes | The title of the list. |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the list was created. |
| `updatedAt` | `string` (datetime) | No | Timestamp when the list was last modified. |
| `description` | `string` | No | A longer description of the list's purpose or occasion. |

## Raw Schema

```json
{
  "id": "blue.registry.list",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "createdAt"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 500,
            "description": "The title of the list.",
            "maxGraphemes": 100
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the list was created."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the list was last modified."
          },
          "description": {
            "type": "string",
            "maxLength": 5000,
            "description": "A longer description of the list's purpose or occasion.",
            "maxGraphemes": 1000
          }
        }
      },
      "description": "A wishlist or registry."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A wishlist or registry containing items."
}
```
