{ "$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" } } }