changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "community_votes": {
+ "properties": {
+ "harmless": {
+ "description": "Community votes for harmless",
+ "type": "integer"
+ },
+ "malicious": {
+ "description": "Community votes for malicious",
+ "type": "integer"
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "VirusTotal file identifier",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "last_analyzed_at": {
+ "description": "ISO 8601 timestamp of last analysis",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "raw_attributes": {
+ "description": "Full attributes object from VirusTotal API",
+ "type": "object"
+ },
+ "reputation": {
+ "description": "Reputation score from community",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "stats": {
+ "properties": {
+ "harmless": {
+ "description": "Number of engines detecting as harmless",
+ "type": "integer"
+ },
+ "malicious": {
+ "description": "Number of engines detecting as malicious",
+ "type": "integer"
+ },
+ "malicious_pct": {
+ "description": "Percentage of engines detecting as malicious",
+ "type": "number"
+ },
+ "suspicious": {
+ "description": "Number of engines detecting as suspicious",
+ "type": "integer"
+ },
+ "total_engines": {
+ "description": "Total engines that analyzed the file",
+ "type": "integer"
+ },
+ "undetected": {
+ "description": "Number of engines with no detection",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "malicious",
+ "suspicious",
+ "harmless",
+ "undetected",
+ "total_engines",
+ "malicious_pct"
+ ],
+ "type": "object"
+ },
+ "tags": {
+ "description": "Tags assigned to the file",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "type": {
+ "description": "Resource type (e.g., 'files')",
+ "type": "string"
+ },
+ "vt_url": {
+ "description": "Direct link to VirusTotal file report",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "type",
+ "id",
+ "stats",
+ "reputation",
+ "community_votes",
+ "tags",
+ "last_analyzed_at",
+ "raw_attributes",
+ "vt_url"
+ ],
+ "type": "object"
+}