{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TopicUpdate", "title": "TopicUpdate", "type": "object", "properties": { "title": { "type": "string" }, "description": { "type": "string" }, "topicStatus": { "type": "string", "enum": [ "OPEN", "IN_PROGRESS", "RESOLVED", "CLOSED" ] }, "priority": { "type": "string", "enum": [ "CRITICAL", "HIGH", "NORMAL", "LOW" ] }, "assignedTo": { "type": "string" }, "dueDate": { "type": "string", "format": "date" } } }