{
"id": "site.exosphere.kanban.status",
"defs": {
"main": {
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"status"
],
"properties": {
"status": {
"type": "string",
"maxLength": 128,
"description": "Column slug the task is moved to. Values are user-defined per Sphere.",
"knownValues": [
"backlog",
"todo",
"in-progress",
"done"
]
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the kanban task whose status is being changed."
}
}
},
"description": "A status change on a kanban task, published on the actor's PDS. Third-party indexers can replay these to derive the current column of a task."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}