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