{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "ThreadLoadedSummary": { "properties": { "agentNickname": { "description": "Optional random unique nickname assigned to an AgentControl-spawned sub-agent.", "type": [ "string", "null" ] }, "agentRole": { "description": "Optional role (agent_role) assigned to an AgentControl-spawned sub-agent.", "type": [ "string", "null" ] }, "id": { "description": "Thread id for a currently loaded session.", "type": "string" }, "parentThreadId": { "description": "Parent thread id when this loaded thread is an AgentControl-spawned subagent.", "type": [ "string", "null" ] } }, "required": [ "id" ], "type": "object" } }, "properties": { "data": { "description": "Thread ids for sessions currently loaded in memory.", "items": { "type": "string" }, "type": "array" }, "nextCursor": { "description": "Opaque cursor to pass to the next call to continue after the last item. if None, there are no more items to return.", "type": [ "string", "null" ] }, "summaries": { "default": [], "description": "Loaded-thread summaries for the returned page when `includeSummaries` is true. Empty when summaries were not requested.", "items": { "$ref": "#/definitions/ThreadLoadedSummary" }, "type": "array" } }, "required": [ "data" ], "title": "ThreadLoadedListResponse", "type": "object" }