{ "$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." } ] } } }