# town.laugh.user.list

> Published by [laugh.town](https://lexicon.garden/identity/did:plc:k6owgpe2rkkchoiivxhzp2t4)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:k6owgpe2rkkchoiivxhzp2t4/town.laugh.user.list)
- [Documentation](https://lexicon.garden/lexicon/did:plc:k6owgpe2rkkchoiivxhzp2t4/town.laugh.user.list/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:k6owgpe2rkkchoiivxhzp2t4/town.laugh.user.list/examples)

## Definitions

### `town.laugh.user.list`

**Type**: `record`

A user-curated list of events, venues, and/or comedians. The favorites list is the one with purpose "favorites".

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Display name |
| `purpose` | `string` | No | Advisory list purpose; "favorites" marks the singular favorites list |
| `createdAt` | `string` (datetime) | Yes | Timestamp of when the list was created |
| `description` | `string` | No | Optional list description |

## Raw Schema

```json
{
  "id": "town.laugh.user.list",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 256,
            "description": "Display name"
          },
          "purpose": {
            "type": "string",
            "description": "Advisory list purpose; \"favorites\" marks the singular favorites list",
            "knownValues": [
              "curated",
              "favorites"
            ]
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of when the list was created"
          },
          "description": {
            "type": "string",
            "maxLength": 2048,
            "description": "Optional list description"
          }
        }
      },
      "description": "A user-curated list of events, venues, and/or comedians. The favorites list is the one with purpose \"favorites\"."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
