A status change on a feature request, published by an admin/owner on their PDS. Third-party indexers can replay these to derive the current status of a request.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"status"
],
"properties": {
"status": {
"type": "string",
"maxLength": 128,
"knownValues": [
"requested",
"not-planned",
"approved",
"in-progress",
"done",
"duplicate"
]
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the feature request whose status is being changed."
}
}
},
"description": "A status change on a feature request, published by an admin/owner on their PDS. Third-party indexers can replay these to derive the current status of a request."
}