# online.timtinkers.bot.shoutout

> Published by [bot.timtinkers.online](https://lexicon.garden/identity/did:plc:xnpibbj2hcqlsodutcnirmxp)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xnpibbj2hcqlsodutcnirmxp/online.timtinkers.bot.shoutout)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xnpibbj2hcqlsodutcnirmxp/online.timtinkers.bot.shoutout/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xnpibbj2hcqlsodutcnirmxp/online.timtinkers.bot.shoutout/examples)

## Definitions

### `online.timtinkers.bot.shoutout`

**Type**: `record`

Record containing a shoutout for a user, typically used during streams to highlight community members.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | The shoutout message text |
| `user` | `string` (did) | Yes | The DID of the user being shouted out |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the shoutout was created |

## Raw Schema

```json
{
  "id": "online.timtinkers.bot.shoutout",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "user",
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 5000,
            "description": "The shoutout message text",
            "maxGraphemes": 500
          },
          "user": {
            "type": "string",
            "format": "did",
            "description": "The DID of the user being shouted out"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the shoutout was created"
          }
        }
      },
      "description": "Record containing a shoutout for a user, typically used during streams to highlight community members."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
