{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/spectrum-analytics_query-response-aggregate", "title": "spectrum-analytics_query-response-aggregate", "allOf": [ { "$ref": "#/components/schemas/spectrum-analytics_api-response-single" }, { "properties": { "result": { "items": { "properties": { "appID": { "allOf": [ { "description": "Application identifier." }, { "$ref": "#/components/schemas/spectrum-analytics_identifier" } ] }, "bytesEgress": { "description": "Number of bytes sent", "type": "number" }, "bytesIngress": { "description": "Number of bytes received", "type": "number" }, "connections": { "description": "Number of connections", "type": "number" }, "durationAvg": { "description": "Average duration of connections", "type": "number" } }, "required": [ "appID", "bytesIngress", "bytesEgress", "connections", "durationAvg" ], "type": "object" }, "type": "array" } } } ] }