AT&T · Schema

Network Metrics

Network performance metrics for a device on AT&T network

Fortune 100TelecommunicationsFortune 100WirelessWirelineBroadbandEnterprise5GNetwork

Properties

Name Type Description
networkGeneration string
signalStrength string
estimatedDownlinkThroughput number
estimatedLatency integer
congestionLevel string
View JSON Schema on GitHub

JSON Schema

network-apis-network-metrics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.att.com/schemas/network/network-metrics",
  "title": "Network Metrics",
  "description": "Network performance metrics for a device on AT&T network",
  "type": "object",
  "properties": {
    "networkGeneration": {
      "type": "string",
      "enum": [
        "5G",
        "5G_NSA",
        "4G",
        "3G"
      ]
    },
    "signalStrength": {
      "type": "string",
      "enum": [
        "EXCELLENT",
        "GOOD",
        "FAIR",
        "POOR"
      ]
    },
    "estimatedDownlinkThroughput": {
      "type": "number",
      "format": "float"
    },
    "estimatedLatency": {
      "type": "integer"
    },
    "congestionLevel": {
      "type": "string",
      "enum": [
        "LOW",
        "MEDIUM",
        "HIGH"
      ]
    }
  }
}