Amazon GuardDuty · Schema

HighestSeverityThreatDetails

Contains details of the highest severity threat detected during scan and number of infected files.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
Severity object
ThreatName object
Count object
View JSON Schema on GitHub

JSON Schema

guardduty-highest-severity-threat-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-highest-severity-threat-details-schema.json",
  "title": "HighestSeverityThreatDetails",
  "description": "Contains details of the highest severity threat detected during scan and number of infected files.",
  "type": "object",
  "properties": {
    "Severity": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "severity"
          },
          "description": "Severity level of the highest severity threat detected."
        }
      ]
    },
    "ThreatName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "threatName"
          },
          "description": "Threat name of the highest severity threat detected as part of the malware scan."
        }
      ]
    },
    "Count": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "xml": {
            "name": "count"
          },
          "description": "Total number of infected files with the highest severity threat detected."
        }
      ]
    }
  }
}