{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-scan-threat-name-schema.json", "title": "ScanThreatName", "description": "Contains files infected with the given threat providing details of malware name and severity.", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "name" }, "description": "The name of the identified threat." } ] }, "Severity": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "severity" }, "description": "Severity of threat identified as part of the malware scan." } ] }, "ItemCount": { "allOf": [ { "$ref": "#/components/schemas/Integer" }, { "xml": { "name": "itemCount" }, "description": "Total number of files infected with given threat." } ] }, "FilePaths": { "allOf": [ { "$ref": "#/components/schemas/FilePaths" }, { "xml": { "name": "filePaths" }, "description": "List of infected files in EBS volume with details." } ] } } }