# forum.barazo.actor.signature

> Published by [barazo.forum](https://lexicon.garden/identity/did:plc:7brt3r7rokkjqc4wjgeovnyx)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7brt3r7rokkjqc4wjgeovnyx/forum.barazo.actor.signature)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7brt3r7rokkjqc4wjgeovnyx/forum.barazo.actor.signature/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7brt3r7rokkjqc4wjgeovnyx/forum.barazo.actor.signature/examples)

## Definitions

### `forum.barazo.actor.signature`

**Type**: `record`

A user's forum signature, displayed below their posts. Singleton record (one per user).

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | Signature content. Plain text or markdown depending on forum configuration. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "forum.barazo.actor.signature",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 3000,
            "description": "Signature content. Plain text or markdown depending on forum configuration.",
            "maxGraphemes": 300
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A user's forum signature, displayed below their posts. Singleton record (one per user)."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
