place.stream.vod.comment
Lexicon Version: 1
Definitions
Section titled “Definitions”Type: record
Record containing a comment on a VOD.
Record Key: tid
Record Properties:
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
text | string | ✅ | The comment text content. | Max Length: 3000 Max Graphemes: 300 |
createdAt | string | ✅ | Client-declared timestamp when this comment was created. | Format: datetime |
video | string | ✅ | AT-URI of the place.stream.video record this comment belongs to. | Format: at-uri |
facets | Array of place.stream.richtext.facet | ❌ | Annotations of text (mentions, URLs, etc) | |
reply | #replyRef | ❌ |
replyRef
Section titled “replyRef”Type: object
Properties:
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
root | com.atproto.repo.strongRef | ✅ | ||
parent | com.atproto.repo.strongRef | ✅ |
Lexicon Source
Section titled “Lexicon Source”{ "lexicon": 1, "id": "place.stream.vod.comment", "defs": { "main": { "type": "record", "description": "Record containing a comment on a VOD.", "key": "tid", "record": { "type": "object", "required": ["text", "createdAt", "video"], "properties": { "text": { "type": "string", "maxLength": 3000, "maxGraphemes": 300, "description": "The comment text content." }, "createdAt": { "type": "string", "format": "datetime", "description": "Client-declared timestamp when this comment was created." }, "video": { "type": "string", "format": "at-uri", "description": "AT-URI of the place.stream.video record this comment belongs to." }, "facets": { "type": "array", "description": "Annotations of text (mentions, URLs, etc)", "items": { "type": "ref", "ref": "place.stream.richtext.facet" } }, "reply": { "type": "ref", "ref": "#replyRef" } } } }, "replyRef": { "type": "object", "required": ["root", "parent"], "properties": { "root": { "type": "ref", "ref": "com.atproto.repo.strongRef" }, "parent": { "type": "ref", "ref": "com.atproto.repo.strongRef" } } } }}