{
"type": "object",
"properties": {
"calls_today": {
"type": "number",
"description": "Total calls made today (UTC)"
},
"calls_today_delta_percent": {
"type": "number",
"description": "Percent change in call volume vs. yesterday"
},
"avg_duration_ms": {
"type": "number",
"description": "Average duration of completed calls today, in milliseconds"
},
"avg_duration_delta_ms": {
"type": "number",
"description": "Change in average duration vs. yesterday, in milliseconds"
},
"connect_rate": {
"type": "number",
"description": "Percent of today's calls that completed"
},
"connect_rate_delta": {
"type": "number",
"description": "Change in connect rate vs. yesterday, in percentage points"
},
"is_new_user": {
"type": "boolean",
"description": "True while the org has not finished onboarding (agent created, published, first call made)"
},
"onboarding": {
"type": "object",
"properties": {
"create_agent": {
"type": "boolean",
"description": "Whether the org has created at least one agent"
},
"publish_agent": {
"type": "boolean",
"description": "Whether the org has published at least one agent version"
},
"first_call": {
"type": "boolean",
"description": "Whether the org has made its first call"
},
"completed_steps": {
"type": "number",
"description": "How many onboarding steps are done"
},
"total_steps": {
"type": "number",
"description": "Total onboarding steps"
}
},
"required": [
"create_agent",
"publish_agent",
"first_call",
"completed_steps",
"total_steps"
],
"additionalProperties": false,
"description": "Onboarding checklist progress"
}
},
"required": [
"calls_today",
"calls_today_delta_percent",
"avg_duration_ms",
"avg_duration_delta_ms",
"connect_rate",
"connect_rate_delta",
"is_new_user",
"onboarding"
],
"additionalProperties": true,
"$schema": "http://json-schema.org/draft-07/schema#"
}