Juniper Networks · Schema

FileVerdict

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
sha256 string
md5 string
sha1 string
verdict string
malware_family string
threat_score integer
first_seen string
last_seen string
View JSON Schema on GitHub

JSON Schema

juniper-fileverdict-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FileVerdict",
  "title": "FileVerdict",
  "type": "object",
  "properties": {
    "sha256": {
      "type": "string"
    },
    "md5": {
      "type": "string"
    },
    "sha1": {
      "type": "string"
    },
    "verdict": {
      "type": "string",
      "enum": [
        "clean",
        "malicious",
        "suspicious",
        "unknown"
      ]
    },
    "malware_family": {
      "type": "string"
    },
    "threat_score": {
      "type": "integer",
      "minimum": 0,
      "maximum": 10
    },
    "first_seen": {
      "type": "string",
      "format": "date-time"
    },
    "last_seen": {
      "type": "string",
      "format": "date-time"
    }
  }
}