{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StatusMetadata",
"title": "StatusMetadata",
"additionalProperties": false,
"description": "The details of the statuses in the associated workflows.",
"properties": {
"category": {
"description": "The category of the status.",
"enum": [
"TODO",
"IN_PROGRESS",
"DONE"
],
"type": "string"
},
"id": {
"description": "The ID of the status.",
"type": "string"
},
"name": {
"description": "The name of the status.",
"type": "string"
}
},
"type": "object"
}