# town.laugh.user.suggest.comedian

> 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.suggest.comedian)
- [Documentation](https://lexicon.garden/lexicon/did:plc:k6owgpe2rkkchoiivxhzp2t4/town.laugh.user.suggest.comedian/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:k6owgpe2rkkchoiivxhzp2t4/town.laugh.user.suggest.comedian/examples)

## Definitions

### `town.laugh.user.suggest.comedian`

**Type**: `record`

User suggestion for a comedian to add to the database

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `link` | `string` | Yes | Website, social profile, or Wikipedia page |
| `name` | `string` | Yes | Comedian name |
| `createdAt` | `string` (datetime) | Yes | Timestamp of when the suggestion was created |

## Raw Schema

```json
{
  "id": "town.laugh.user.suggest.comedian",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "link",
          "createdAt"
        ],
        "properties": {
          "link": {
            "type": "string",
            "maxLength": 1024,
            "description": "Website, social profile, or Wikipedia page"
          },
          "name": {
            "type": "string",
            "maxLength": 256,
            "description": "Comedian name"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of when the suggestion was created"
          }
        }
      },
      "description": "User suggestion for a comedian to add to the database"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
