A community note/annotation on any AT-URI
Record Key
tid
Timestamp-based ID
Properties
body
string
Required
The note content - context, clarification, fact-check
maxLength: 2000 bytesmaxGraphemes: 1000 graphemescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
sources
array
of
string
uri
Optional
Optional supporting source URLs
maxLength: 5 itemssubject
string
at-uri
Required
The AT-URI being annotated (post, profile, etc.)
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"body",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"maxLength": 2000,
"description": "The note content - context, clarification, fact-check",
"maxGraphemes": 1000
},
"sources": {
"type": "array",
"items": {
"type": "string",
"format": "uri",
"maxLength": 500
},
"maxLength": 5,
"description": "Optional supporting source URLs"
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "The AT-URI being annotated (post, profile, etc.)"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A community note/annotation on any AT-URI"
}