A rating on a community note
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"note",
"helpful",
"createdAt"
],
"properties": {
"note": {
"type": "string",
"format": "at-uri",
"description": "The note being rated"
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 50,
"knownValues": [
"clear",
"sourced",
"balanced",
"timely",
"misleading",
"biased",
"outdated",
"irrelevant"
]
},
"maxLength": 5,
"description": "Optional qualitative tags"
},
"helpful": {
"enum": [
"yes",
"somewhat",
"no"
],
"type": "string",
"description": "How helpful is this note? Maps to 1.0/0.5/0.0"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A rating on a community note"
}