Juniper Networks · Schema

AnalysisResult

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
submission_id string
sha256 string
file_name string
file_type string
file_size integer
status string
verdict string
threat_score integer
malware_info object
analysis_details object
submitted_at string
completed_at string
View JSON Schema on GitHub

JSON Schema

juniper-analysisresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AnalysisResult",
  "title": "AnalysisResult",
  "type": "object",
  "properties": {
    "submission_id": {
      "type": "string"
    },
    "sha256": {
      "type": "string"
    },
    "file_name": {
      "type": "string"
    },
    "file_type": {
      "type": "string"
    },
    "file_size": {
      "type": "integer"
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "in_progress",
        "completed",
        "failed"
      ]
    },
    "verdict": {
      "type": "string",
      "enum": [
        "clean",
        "malicious",
        "suspicious",
        "unknown"
      ]
    },
    "threat_score": {
      "type": "integer",
      "minimum": 0,
      "maximum": 10
    },
    "malware_info": {
      "type": "object",
      "properties": {
        "family": {
          "type": "string"
        },
        "type": {
          "type": "string",
          "enum": [
            "trojan",
            "ransomware",
            "worm",
            "adware",
            "spyware",
            "backdoor",
            "rootkit",
            "other"
          ]
        }
      }
    },
    "analysis_details": {
      "type": "object",
      "properties": {
        "static_analysis": {
          "type": "object"
        },
        "dynamic_analysis": {
          "type": "object"
        }
      }
    },
    "submitted_at": {
      "type": "string",
      "format": "date-time"
    },
    "completed_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}