No description available.
Record Key
tid
Timestamp-based ID
Properties
body
string
Required
No description available.
maxLength: 30000 bytesminLength: 1 bytesmaxGraphemes: 10000 graphemescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
parent
string
at-uri
Optional
Parent comment, for threading.
project
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
subject
union
Required
What the comment is about: a record (e.g. a translation), a source string key, or a (key, locale) pair.
Known types:
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"project",
"subject",
"body",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"maxLength": 30000,
"minLength": 1,
"maxGraphemes": 10000
},
"parent": {
"type": "string",
"format": "at-uri",
"description": "Parent comment, for threading."
},
"project": {
"type": "string",
"format": "at-uri"
},
"subject": {
"refs": [
"#recordSubject",
"#stringSubject",
"#keyLocaleSubject"
],
"type": "union",
"description": "What the comment is about: a record (e.g. a translation), a source string key, or a (key, locale) pair."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}