# app.bulleted.comment

> Published by [ngerakines.me](https://lexicon.garden/identity/did:plc:cbkjy5n7bk3ax2wplmtjofq2)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/app.bulleted.comment)
- [Documentation](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/app.bulleted.comment/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/app.bulleted.comment/examples)

## Definitions

### `app.bulleted.comment`

**Type**: `record`

A comment on a node, owned by its author.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | The comment's content. |
| `facets` | `array` | No | Rich text annotations over text. |
| `subject` | `string` (at-uri) | Yes | The node this comment is about. |
| `createdAt` | `string` (datetime) | Yes | When the comment was created. |

## Raw Schema

```json
{
  "id": "app.bulleted.comment",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 10000,
            "description": "The comment's content."
          },
          "facets": {
            "type": "array",
            "items": {
              "ref": "app.bsky.richtext.facet",
              "type": "ref"
            },
            "description": "Rich text annotations over text."
          },
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "The node this comment is about."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the comment was created."
          }
        }
      },
      "description": "A comment on a node, owned by its author."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
