Palo Alto Networks · Schema

VerdictResponse

WildFire verdict result for a single file hash query.

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
get-verdict-info object
View JSON Schema on GitHub

JSON Schema

wildfire-api-verdict-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VerdictResponse",
  "description": "WildFire verdict result for a single file hash query.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/wildfire-api-verdict-response-schema.json",
  "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": "integer",
          "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
          ]
        }
      }
    }
  }
}