A comment on a podcast episode, optionally threaded.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
episode
ref
com.atproto.repo.strongRef
Required
The episode being commented on.
parent
ref
com.atproto.repo.strongRef
Optional
If replying to another comment, reference it here.
text
string
Required
No description available.
maxLength: 2000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"episode",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 2000
},
"parent": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "If replying to another comment, reference it here."
},
"episode": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The episode being commented on."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A comment on a podcast episode, optionally threaded."
}