# place.stream.vod.comment

> Published by [did:web:stream.place](https://lexicon.garden/identity/did:web:stream.place)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.vod.comment)
- [Documentation](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.vod.comment/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.vod.comment/examples)

## Definitions

### `place.stream.vod.comment`

**Type**: `record`

Record containing a comment on a VOD.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | The comment text content. |
| `reply` | `ref` → `#replyRef` | No |  |
| `video` | `string` (at-uri) | Yes | AT-URI of the place.stream.video record this comment belongs to. |
| `facets` | `array` | No | Annotations of text (mentions, URLs, etc) |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this comment was created. |

### `place.stream.vod.comment#replyRef`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `root` | `ref` → `com.atproto.repo.strongRef` | Yes |  |
| `parent` | `ref` → `com.atproto.repo.strongRef` | Yes |  |

## Raw Schema

```json
{
  "id": "place.stream.vod.comment",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt",
          "video"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 3000,
            "description": "The comment text content.",
            "maxGraphemes": 300
          },
          "reply": {
            "ref": "#replyRef",
            "type": "ref"
          },
          "video": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the place.stream.video record this comment belongs to."
          },
          "facets": {
            "type": "array",
            "items": {
              "ref": "place.stream.richtext.facet",
              "type": "ref"
            },
            "description": "Annotations of text (mentions, URLs, etc)"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this comment was created."
          }
        }
      },
      "description": "Record containing a comment on a VOD."
    },
    "replyRef": {
      "type": "object",
      "required": [
        "root",
        "parent"
      ],
      "properties": {
        "root": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref"
        },
        "parent": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
