# tech.tokimeki.forum.channel

> Published by [tokimeki.blue](https://lexicon.garden/identity/did:plc:4tr5dqti7nmu6g2czpthntak)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.forum.channel)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.forum.channel/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.forum.channel/examples)

## Definitions

### `tech.tokimeki.forum.channel`

**Type**: `record`

A channel inside a server space. Written only by the server owner (space authority) into their own repo.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `kind` | `string` | Yes | chat = Discord-like flat message stream. forum = thread-first board (threads required, messages reply into a thread). |
| `name` | `string` | Yes |  |
| `topic` | `string` | No |  |
| `position` | `integer` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "tech.tokimeki.forum.channel",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "kind",
          "createdAt"
        ],
        "properties": {
          "kind": {
            "type": "string",
            "description": "chat = Discord-like flat message stream. forum = thread-first board (threads required, messages reply into a thread).",
            "knownValues": [
              "chat",
              "forum"
            ]
          },
          "name": {
            "type": "string",
            "maxLength": 640,
            "maxGraphemes": 64
          },
          "topic": {
            "type": "string",
            "maxLength": 2560,
            "maxGraphemes": 256
          },
          "position": {
            "type": "integer",
            "minimum": 0
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A channel inside a server space. Written only by the server owner (space authority) into their own repo."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
