{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ClientStats", "title": "ClientStats", "type": "object", "properties": { "mac": { "type": "string" }, "hostname": { "type": "string" }, "ip": { "type": "string" }, "ssid": { "type": "string" }, "wlan_id": { "type": "string", "format": "uuid" }, "ap_mac": { "type": "string" }, "ap_id": { "type": "string", "format": "uuid" }, "band": { "type": "string" }, "channel": { "type": "integer" }, "rssi": { "type": "number", "description": "Signal strength in dBm" }, "snr": { "type": "number", "description": "Signal-to-noise ratio" }, "tx_rate": { "type": "number", "description": "Transmit rate in Mbps" }, "rx_rate": { "type": "number", "description": "Receive rate in Mbps" }, "tx_bytes": { "type": "integer" }, "rx_bytes": { "type": "integer" }, "uptime": { "type": "integer" } } }