# app.atmobb.forum.category

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

## Definitions

### `app.atmobb.forum.category`

**Type**: `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.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `order` | `integer` | No | Sort position among the forum's categories. |
| `createdAt` | `string` (datetime) | No |  |

## Raw Schema

```json
{
  "id": "app.atmobb.forum.category",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
