{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-structure/guardduty-highest-severity-threat-details-structure.json", "name": "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." } ] } } }