McAfee (Trellix) · Schema

TrafficStatistics

AntivirusCybersecurityEndpoint ProtectionSecurityThreat Intelligence

Properties

Name Type Description
period string Statistics time period
totalRequests integer Total number of web requests
blockedRequests integer Number of blocked requests
allowedRequests integer Number of allowed requests
bytesTransferred integer Total bytes transferred
topCategories array Top URL categories by request count
View JSON Schema on GitHub

JSON Schema

mcafee-trafficstatistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrafficStatistics",
  "title": "TrafficStatistics",
  "type": "object",
  "properties": {
    "period": {
      "type": "string",
      "description": "Statistics time period"
    },
    "totalRequests": {
      "type": "integer",
      "description": "Total number of web requests"
    },
    "blockedRequests": {
      "type": "integer",
      "description": "Number of blocked requests"
    },
    "allowedRequests": {
      "type": "integer",
      "description": "Number of allowed requests"
    },
    "bytesTransferred": {
      "type": "integer",
      "format": "int64",
      "description": "Total bytes transferred"
    },
    "topCategories": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string"
          },
          "count": {
            "type": "integer"
          }
        }
      },
      "description": "Top URL categories by request count"
    }
  }
}