{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/at-t-developer-hub/refs/heads/main/json-structure/network-insights-api-network-metrics-structure.json", "description": "NetworkMetrics schema", "type": "object", "properties": { "networkGeneration": { "type": "string", "description": "Current network generation for the device", "enum": [ "5G", "5G_NSA", "4G", "3G" ], "example": "5G" }, "signalStrength": { "type": "string", "description": "Signal quality indicator", "enum": [ "EXCELLENT", "GOOD", "FAIR", "POOR" ], "example": "GOOD" }, "estimatedDownlinkThroughput": { "type": "int32", "description": "Estimated downlink throughput in Mbps", "example": 250 }, "estimatedUplinkThroughput": { "type": "int32", "description": "Estimated uplink throughput in Mbps", "example": 50 }, "estimatedLatency": { "type": "int32", "description": "Estimated round-trip latency in milliseconds", "example": 15 }, "congestionLevel": { "type": "string", "description": "Current network congestion level", "enum": [ "LOW", "MEDIUM", "HIGH" ], "example": "LOW" } }, "name": "NetworkMetrics" }