Label assignment on a feature request or kanban task, published on the actor's PDS. Third-party indexers can replay the latest record per subject to derive the current label set.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"labels"
],
"properties": {
"labels": {
"type": "array",
"items": {
"type": "string"
},
"maxLength": 50,
"description": "Label names assigned to the entity. Replaces any previous set."
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the labeled entity."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"maxLength": 64
}
}
},
"description": "Label assignment on a feature request or kanban task, published on the actor's PDS. Third-party indexers can replay the latest record per subject to derive the current label set."
}