{ "type": "object", "description": "Request payload for updating a thread's properties.", "properties": { "status": { "type": "string", "description": "New thread status", "example": "CLOSED", "enum": [ "OPEN", "CLOSED" ] }, "assignedTo": { "type": "string", "description": "User ID to assign the thread to", "example": "user_789" } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "UpdateThreadRequest" }