# app.atmobb.actor.profile

> Published by [lexicons.atmobb.app](https://lexicon.garden/identity/did:plc:dqnwiguwsbb6uwrm7a2rsff2)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:dqnwiguwsbb6uwrm7a2rsff2/app.atmobb.actor.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:dqnwiguwsbb6uwrm7a2rsff2/app.atmobb.actor.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:dqnwiguwsbb6uwrm7a2rsff2/app.atmobb.actor.profile/examples)

## Definitions

### `app.atmobb.actor.profile`

**Type**: `record`

A user's atmobb profile, global across all forums. Lives in the user's repo.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | No | Self-chosen user title, shown under the username where the forum allows it. |
| `avatar` | `blob` | No |  |
| `website` | `string` (uri) | No |  |
| `pronouns` | `string` | No |  |
| `createdAt` | `string` (datetime) | No |  |
| `signature` | `array` | No | Rendered under every post, phpBB style. Keep it short; clients may truncate. |
| `displayName` | `string` | No |  |

## Raw Schema

```json
{
  "id": "app.atmobb.actor.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 640,
            "description": "Self-chosen user title, shown under the username where the forum allows it.",
            "maxGraphemes": 64
          },
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp",
              "image/gif"
            ],
            "maxSize": 1000000
          },
          "website": {
            "type": "string",
            "format": "uri"
          },
          "pronouns": {
            "type": "string",
            "maxLength": 640,
            "maxGraphemes": 64
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "signature": {
            "type": "array",
            "items": {
              "refs": [
                "app.atmobb.richtext.block#text",
                "app.atmobb.richtext.block#quote",
                "app.atmobb.richtext.block#code",
                "app.atmobb.richtext.block#image"
              ],
              "type": "union"
            },
            "maxLength": 3,
            "description": "Rendered under every post, phpBB style. Keep it short; clients may truncate."
          },
          "displayName": {
            "type": "string",
            "maxLength": 640,
            "maxGraphemes": 64
          }
        }
      },
      "description": "A user's atmobb profile, global across all forums. Lives in the user's repo."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
