CallbackFileSummary

Lightweight file reference returned with IP list results.

SecurityThreat IntelligenceCybersecurityIP ReputationVulnerability ManagementNetwork TelemetrySOC AutomationPublic APIs

Properties

Name Type Description
sha256 string SHA-256 hash of the file.
file_name string Original file name.
type string File MIME type.
vt_threat_name string VirusTotal threat name.
vt_detection_count integer Number of VirusTotal engines that flagged the file.
View JSON Schema on GitHub

JSON Schema

greynoise-callback-file-summary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/greynoise/json-schema/greynoise-callback-file-summary-schema.json",
  "title": "CallbackFileSummary",
  "type": "object",
  "description": "Lightweight file reference returned with IP list results.",
  "properties": {
    "sha256": {
      "type": "string",
      "description": "SHA-256 hash of the file.",
      "example": "string"
    },
    "file_name": {
      "type": "string",
      "description": "Original file name.",
      "example": "Google Public DNS"
    },
    "type": {
      "type": "string",
      "description": "File MIME type.",
      "example": "string"
    },
    "vt_threat_name": {
      "type": "string",
      "description": "VirusTotal threat name.",
      "example": "Google Public DNS"
    },
    "vt_detection_count": {
      "type": "integer",
      "description": "Number of VirusTotal engines that flagged the file.",
      "example": 42
    }
  }
}