{
"type": "object",
"properties": {
"total": {
"type": "number",
"description": "Total number of agents in the organization, before any truncation"
},
"agents": {
"type": "array",
"description": "Roster rows — each has id (agent_...), name, agent_type, current_version_number, and created date"
},
"truncated": {
"type": "boolean",
"description": "True when the roster was capped at the max limit and more agents exist"
}
},
"required": [
"total",
"agents",
"truncated"
],
"additionalProperties": true,
"$schema": "http://json-schema.org/draft-07/schema#"
}