AT&T Developer Hub · JSON Structure

Network Insights Api Network Metrics Structure

NetworkMetrics schema

Type: object Properties: 6
Fortune 1005GNetwork APIsCAMARAConnectivityTelecommunicationsEdge ComputingDevice StatusSIM Swap

NetworkMetrics is a JSON Structure definition published by AT&T Developer Hub, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

networkGeneration signalStrength estimatedDownlinkThroughput estimatedUplinkThroughput estimatedLatency congestionLevel

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
}