AT&T · Schema

Threat Assessment

ML-based device threat assessment from AT&T network

Fortune 100TelecommunicationsFortune 100WirelessWirelineBroadbandEnterprise5GNetwork

Properties

Name Type Description
riskLevel string
anomalyScore number
threats array
View JSON Schema on GitHub

JSON Schema

network-apis-threat-assessment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.att.com/schemas/network/threat-assessment",
  "title": "Threat Assessment",
  "description": "ML-based device threat assessment from AT&T network",
  "type": "object",
  "properties": {
    "riskLevel": {
      "type": "string",
      "enum": [
        "LOW",
        "MEDIUM",
        "HIGH",
        "CRITICAL"
      ]
    },
    "anomalyScore": {
      "type": "number",
      "minimum": 0,
      "maximum": 1
    },
    "threats": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "UNUSUAL_LOCATION",
          "ABNORMAL_DATA_USAGE",
          "KNOWN_MALWARE_TRAFFIC",
          "SIM_CLONING",
          "ROAMING_ANOMALY",
          "CALL_PATTERN_ANOMALY"
        ]
      }
    }
  }
}