A comment on a userstyle. Can be a reply to another comment.
Record Key
tid
Timestamp-based ID
Properties
comment
string
Required
No description available.
maxLength: 2560 bytesmaxGraphemes: 256 graphemescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
parent
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
subject
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
updatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"comment",
"createdAt"
],
"properties": {
"parent": {
"type": "string",
"format": "at-uri"
},
"comment": {
"type": "string",
"maxLength": 2560,
"maxGraphemes": 256
},
"subject": {
"type": "string",
"format": "at-uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A comment on a userstyle. Can be a reply to another comment."
}