Record Key
tid
Timestamp-based ID
Properties
bug
string
at-uri
Required
Reference to the bug report
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
message
string
Optional
Optional explanation or link to fix
maxLength: 3000 bytesmaxGraphemes: 1000 graphemesmessageFacets
array
of
ref
app.bsky.richtext.facet
Optional
Annotations of message (mentions and links)
status
string
Required
No description provided.
Known values:
acknowledged, fixed, wontfix, duplicate, invalidView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"bug",
"status",
"createdAt"
],
"properties": {
"bug": {
"type": "string",
"format": "at-uri",
"description": "Reference to the bug report"
},
"status": {
"type": "string",
"knownValues": [
"acknowledged",
"fixed",
"wontfix",
"duplicate",
"invalid"
]
},
"message": {
"type": "string",
"maxLength": 3000,
"description": "Optional explanation or link to fix",
"maxGraphemes": 1000
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"messageFacets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
},
"description": "Annotations of message (mentions and links)"
}
}
}
}