{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ChatMessage", "title": "ChatMessage", "type": "object", "required": [ "role", "content" ], "properties": { "role": { "type": "string", "description": "The role of the message author.", "enum": [ "system", "user", "assistant", "tool" ] }, "content": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "object" } } ], "description": "The content of the message." }, "tool_calls": { "type": "array", "description": "Tool calls generated by the agent.", "items": { "$ref": "#/components/schemas/ToolCall" } }, "tool_call_id": { "type": "string", "description": "The ID of the tool call this message is responding to." } } }