# site.exosphere.kanban.comment

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

## Definitions

### `site.exosphere.kanban.comment`

**Type**: `record`

A comment on a kanban task. Published on the commenter's PDS.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `content` | `string` | Yes |  |
| `subject` | `string` (at-uri) | Yes | AT URI of the kanban task being commented on. |
| `updatedAt` | `string` (datetime) | No |  |

## Raw Schema

```json
{
  "id": "site.exosphere.kanban.comment",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "content"
        ],
        "properties": {
          "content": {
            "type": "string",
            "maxLength": 5000
          },
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI of the kanban task being commented on."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A comment on a kanban task. Published on the commenter's PDS."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
