# site.exosphere.kanban.status

> 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.status)
- [Documentation](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.kanban.status/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.kanban.status/examples)

## Definitions

### `site.exosphere.kanban.status`

**Type**: `record`

A status change on a kanban task, published on the actor's PDS. Third-party indexers can replay these to derive the current column of a task.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `status` | `string` | Yes | Column slug the task is moved to. Values are user-defined per Sphere. |
| `subject` | `string` (at-uri) | Yes | AT URI of the kanban task whose status is being changed. |
| `statusType` | `string` | Yes | Canonical status type the column maps to. Third-party indexers use this to categorize user-defined slugs without needing the sphere's column config. |

## Raw Schema

```json
{
  "id": "site.exosphere.kanban.status",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "status",
          "statusType"
        ],
        "properties": {
          "status": {
            "type": "string",
            "maxLength": 128,
            "description": "Column slug the task is moved to. Values are user-defined per Sphere.",
            "knownValues": [
              "backlog",
              "todo",
              "in-progress",
              "done"
            ]
          },
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI of the kanban task whose status is being changed."
          },
          "statusType": {
            "type": "string",
            "description": "Canonical status type the column maps to. Third-party indexers use this to categorize user-defined slugs without needing the sphere's column config.",
            "knownValues": [
              "backlog",
              "planned",
              "started",
              "completed",
              "canceled"
            ]
          }
        }
      },
      "description": "A status change on a kanban task, published on the actor's PDS. Third-party indexers can replay these to derive the current column of a task."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
