AgentTaskEvent
An event in the agent task lifecycle (for SSE streaming).
Properties
| Property | Type | Required | Description |
|---|---|---|---|
created_at |
string | Yes | |
event_type |
string | Yes | |
id |
string | Yes | |
payload |
any | Yes | |
task_id |
string | Yes |
View JSON Schema
{
"type": "object",
"description": "An event in the agent task lifecycle (for SSE streaming).",
"required": [
"id",
"task_id",
"event_type",
"payload",
"created_at"
],
"properties": {
"created_at": {
"type": "string",
"format": "date-time"
},
"event_type": {
"type": "string"
},
"id": {
"type": "string",
"format": "uuid"
},
"payload": {},
"task_id": {
"type": "string",
"format": "uuid"
}
}
}