Properties
| Name | Type | Description |
|---|---|---|
| mac | string | |
| hostname | string | |
| ip | string | |
| ssid | string | |
| wlan_id | string | |
| ap_mac | string | |
| ap_id | string | |
| band | string | |
| channel | integer | |
| rssi | number | Signal strength in dBm |
| snr | number | Signal-to-noise ratio |
| tx_rate | number | Transmit rate in Mbps |
| rx_rate | number | Receive rate in Mbps |
| tx_bytes | integer | |
| rx_bytes | integer | |
| uptime | integer |
JSON Schema
{
"$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"
}
}
}