{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StatusCreate",
"title": "StatusCreate",
"additionalProperties": false,
"description": "Details of the status being created.",
"properties": {
"description": {
"description": "The description of the status.",
"type": "string"
},
"name": {
"description": "The name of the status.",
"maxLength": 255,
"type": "string"
},
"statusCategory": {
"description": "The category of the status.",
"enum": [
"TODO",
"IN_PROGRESS",
"DONE"
],
"type": "string"
}
},
"required": [
"name",
"statusCategory"
],
"type": "object"
}