# app.atmobb.forum.accessRequest

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

## Definitions

### `app.atmobb.forum.accessRequest`

**Type**: `record`

A request to join a members-only (space-backed) board. Lives in the requester's repo. A forum sysop resolves it by granting space membership (approve) or recording a moderation.action denyAccess (deny).

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `board` | `string` (at-uri) | Yes | The app.atmobb.forum.board being requested. Its authority is the forum's DID. |
| `reason` | `string` | No | Optional note from the requester to the moderators. |
| `createdAt` | `string` (datetime) | No |  |

## Raw Schema

```json
{
  "id": "app.atmobb.forum.accessRequest",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "board"
        ],
        "properties": {
          "board": {
            "type": "string",
            "format": "at-uri",
            "description": "The app.atmobb.forum.board being requested. Its authority is the forum's DID."
          },
          "reason": {
            "type": "string",
            "maxLength": 3000,
            "description": "Optional note from the requester to the moderators.",
            "maxGraphemes": 300
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A request to join a members-only (space-backed) board. Lives in the requester's repo. A forum sysop resolves it by granting space membership (approve) or recording a moderation.action denyAccess (deny)."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
