app.atmobb.forum.profile

lexicons.atmobb.app

Documentation

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

main record

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

Record Key literal:self Fixed literal value

Properties

avatar blob Optional

No description available.

maxSize: 1.0 MB
banner blob Optional

No description available.

maxSize: 2.0 MB
createdAt string datetime Optional

An RFC 3339 formatted timestamp.

description string Optional

No description available.

maxLength: 10000 bytesmaxGraphemes: 1000 graphemes
name string Required

No description available.

maxLength: 1000 bytesmaxGraphemes: 100 graphemes
ranks array of ref #rank Optional

Post-count rank ladder, ordered ascending by minPosts. Ranks are computed by appviews from indexed post counts.

maxLength: 50 items
View raw schema
{
  "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 object

No description available.

Properties

minPosts integer Required

No description available.

minimum: 0
title string Required

No description available.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
View raw schema
{
  "type": "object",
  "required": [
    "title",
    "minPosts"
  ],
  "properties": {
    "title": {
      "type": "string",
      "maxLength": 640,
      "maxGraphemes": 64
    },
    "minPosts": {
      "type": "integer",
      "minimum": 0
    }
  }
}

Lexicon Garden

@