forum.barazo.actor.signature

barazo.forum

Documentation

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

main record

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

Record Key literal:self Fixed literal value

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

text string Required

Signature content. Plain text or markdown depending on forum configuration.

maxLength: 3000 bytesmaxGraphemes: 300 graphemes
View raw schema
{
  "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)."
}

Lexicon Garden

@