{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/conversations-api-update-thread-request-schema.json", "title": "UpdateThreadRequest", "description": "Request payload for updating a thread's properties.", "type": "object", "properties": { "status": { "type": "string", "enum": [ "OPEN", "CLOSED" ], "description": "New thread status", "example": "CLOSED" }, "assignedTo": { "type": "string", "description": "User ID to assign the thread to", "example": "user_789" } } }