Juniper Networks · Schema
ClientStat
AutomationCloudData CenterEnterpriseNetworkingSDNSecurityFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| mac | string | Client MAC address. |
| hostname | string | Client hostname. |
| ip | string | Client IP address. |
| ssid | string | Connected SSID. |
| ap_mac | string | MAC address of the connected AP. |
| rssi | number | Received signal strength indicator in dBm. |
| snr | number | Signal-to-noise ratio in dB. |
| band | string | Connected radio band. |
| channel | integer | Connected radio channel. |
| rx_bytes | integer | Total received bytes. |
| tx_bytes | integer | Total transmitted bytes. |
| rx_rate | number | Receive data rate in Mbps. |
| tx_rate | number | Transmit data rate in Mbps. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ClientStat",
"title": "ClientStat",
"type": "object",
"properties": {
"mac": {
"type": "string",
"description": "Client MAC address."
},
"hostname": {
"type": "string",
"description": "Client hostname."
},
"ip": {
"type": "string",
"description": "Client IP address."
},
"ssid": {
"type": "string",
"description": "Connected SSID."
},
"ap_mac": {
"type": "string",
"description": "MAC address of the connected AP."
},
"rssi": {
"type": "number",
"description": "Received signal strength indicator in dBm."
},
"snr": {
"type": "number",
"description": "Signal-to-noise ratio in dB."
},
"band": {
"type": "string",
"description": "Connected radio band."
},
"channel": {
"type": "integer",
"description": "Connected radio channel."
},
"rx_bytes": {
"type": "integer",
"description": "Total received bytes."
},
"tx_bytes": {
"type": "integer",
"description": "Total transmitted bytes."
},
"rx_rate": {
"type": "number",
"description": "Receive data rate in Mbps."
},
"tx_rate": {
"type": "number",
"description": "Transmit data rate in Mbps."
}
}
}