app.atmobb.forum.category

lexicons.atmobb.app

Documentation

A grouping header for boards on a forum's index. Lives in the forum account's repo; boards reference it via their category field.

main record

A grouping header for boards on a forum's index. Lives in the forum account's repo; boards reference it via their category field.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Optional

An RFC 3339 formatted timestamp.

name string Required

No description available.

maxLength: 1000 bytesmaxGraphemes: 100 graphemes
order integer Optional

Sort position among the forum's categories.

minimum: 0
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 1000,
        "maxGraphemes": 100
      },
      "order": {
        "type": "integer",
        "minimum": 0,
        "description": "Sort position among the forum's categories."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "A grouping header for boards on a forum's index. Lives in the forum account's repo; boards reference it via their category field."
}

Lexicon Garden

@