# app.atmobb.forum.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.forum.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:dqnwiguwsbb6uwrm7a2rsff2/app.atmobb.forum.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:dqnwiguwsbb6uwrm7a2rsff2/app.atmobb.forum.profile/examples)

## Definitions

### `app.atmobb.forum.profile`

**Type**: `record`

A forum's identity and configuration. Lives in the forum account's repo; the forum's DID is the forum's identity.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `links` | `array` | No |  |
| `ranks` | `array` | No | Post-count rank ladder, ordered ascending by minPosts. Ranks are computed by appviews from indexed post counts. |
| `rules` | `array` | No |  |
| `avatar` | `blob` | No |  |
| `banner` | `blob` | No |  |
| `createdAt` | `string` (datetime) | No |  |
| `description` | `string` | No |  |

### `app.atmobb.forum.profile#rank`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | Yes |  |
| `minPosts` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "app.atmobb.forum.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 1000,
            "maxGraphemes": 100
          },
          "links": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "uri"
            },
            "maxLength": 20
          },
          "ranks": {
            "type": "array",
            "items": {
              "ref": "#rank",
              "type": "ref"
            },
            "maxLength": 50,
            "description": "Post-count rank ladder, ordered ascending by minPosts. Ranks are computed by appviews from indexed post counts."
          },
          "rules": {
            "type": "array",
            "items": {
              "refs": [
                "app.atmobb.richtext.block#text",
                "app.atmobb.richtext.block#quote",
                "app.atmobb.richtext.block#code"
              ],
              "type": "union"
            },
            "maxLength": 50
          },
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000
          },
          "banner": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 2000000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 10000,
            "maxGraphemes": 1000
          }
        }
      },
      "description": "A forum's identity and configuration. Lives in the forum account's repo; the forum's DID is the forum's identity."
    },
    "rank": {
      "type": "object",
      "required": [
        "title",
        "minPosts"
      ],
      "properties": {
        "title": {
          "type": "string",
          "maxLength": 640,
          "maxGraphemes": 64
        },
        "minPosts": {
          "type": "integer",
          "minimum": 0
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
