Record Key
tid
Timestamp-based ID
Properties
attachments
union
Optional
No description provided.
Known types:
body
string
Required
No description provided.
maxLength: 10000 bytesmaxGraphemes: 3000 graphemesbodyFacets
array
of
ref
app.bsky.richtext.facet
Optional
Annotations of body text (mentions and links)
bug
string
at-uri
Required
Reference to the bug report
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
parent
string
at-uri
Optional
Optional reference to parent comment for threading
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"bug",
"body",
"createdAt"
],
"properties": {
"bug": {
"type": "string",
"format": "at-uri",
"description": "Reference to the bug report"
},
"body": {
"type": "string",
"maxLength": 10000,
"maxGraphemes": 3000
},
"parent": {
"type": "string",
"format": "at-uri",
"description": "Optional reference to parent comment for threading"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"bodyFacets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
},
"description": "Annotations of body text (mentions and links)"
},
"attachments": {
"refs": [
"network.slices.tools.defs#images"
],
"type": "union"
}
}
}
}