{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AgentApiResponse", "title": "AgentApiResponse", "required": [ "data", "meta" ], "type": "object", "properties": { "meta": { "description": "Response metadata.", "$ref": "#/components/schemas/Meta" }, "data": { "type": "array", "description": "List of Agent Statistics records retrieved according to query parameters.", "items": { "$ref": "#/components/schemas/OutAgentStatistics" } } }, "description": "Response wrapper for agent statistics." }