{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/wildfire-api-verdict-response-structure.json", "name": "VerdictResponse", "description": "WildFire verdict result for a single file hash query.", "type": "object", "properties": { "get-verdict-info": { "type": "object", "properties": { "md5": { "type": "string", "description": "MD5 hash of the queried file." }, "sha256": { "type": "string", "description": "SHA-256 hash of the queried file." }, "verdict": { "type": "int32", "description": "Verdict code: 0 (benign), 1 (malware), 2 (grayware), 4 (phishing), -100 (pending), -101 (error), -102 (unknown), -103 (invalid hash).", "enum": [ 0, 1, 2, 4, -100, -101, -102, -103 ] } } } } }