# site.exosphere.kanban.permissions

> Published by [exosphere.site](https://lexicon.garden/identity/did:plc:tztfs5zp6b4feo4u64adfvmq)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.kanban.permissions)
- [Documentation](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.kanban.permissions/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.kanban.permissions/examples)

## Definitions

### `site.exosphere.kanban.permissions`

**Type**: `record`

Permission overrides for the kanban module of an Exosphere Sphere. Published on the Sphere owner's PDS. Only non-default roles need to be specified — absent keys use the module's built-in defaults.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `assign` | `ref` → `#role` | No | Minimum role to assign tasks. |
| `create` | `ref` → `#role` | No | Minimum role to create tasks. |
| `comment` | `ref` → `#role` | No | Minimum role to comment on tasks. |
| `moderate` | `ref` → `#role` | No | Minimum role to hide/unhide content. |
| `manageTasks` | `ref` → `#role` | No | Minimum role to edit/delete others' tasks. |
| `changeStatus` | `ref` → `#role` | No | Minimum role to move tasks between columns. |
| `manageSettings` | `ref` → `#role` | No | Minimum role to manage board settings (columns, etc.). |

### `site.exosphere.kanban.permissions#role`

**Type**: `string`

Minimum role required to perform an action.

**Known Values**:
- `owner`
- `admin`
- `member`
- `authenticated`

**Constraints**: maxLength: 64

## Raw Schema

```json
{
  "id": "site.exosphere.kanban.permissions",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "assign": {
            "ref": "#role",
            "type": "ref",
            "description": "Minimum role to assign tasks."
          },
          "create": {
            "ref": "#role",
            "type": "ref",
            "description": "Minimum role to create tasks."
          },
          "comment": {
            "ref": "#role",
            "type": "ref",
            "description": "Minimum role to comment on tasks."
          },
          "moderate": {
            "ref": "#role",
            "type": "ref",
            "description": "Minimum role to hide/unhide content."
          },
          "manageTasks": {
            "ref": "#role",
            "type": "ref",
            "description": "Minimum role to edit/delete others' tasks."
          },
          "changeStatus": {
            "ref": "#role",
            "type": "ref",
            "description": "Minimum role to move tasks between columns."
          },
          "manageSettings": {
            "ref": "#role",
            "type": "ref",
            "description": "Minimum role to manage board settings (columns, etc.)."
          }
        }
      },
      "description": "Permission overrides for the kanban module of an Exosphere Sphere. Published on the Sphere owner's PDS. Only non-default roles need to be specified — absent keys use the module's built-in defaults."
    },
    "role": {
      "type": "string",
      "maxLength": 64,
      "description": "Minimum role required to perform an action.",
      "knownValues": [
        "owner",
        "admin",
        "member",
        "authenticated"
      ]
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
