Properties
| Name | Type | Description |
|---|---|---|
| sha256 | string | |
| md5 | string | |
| sha1 | string | |
| verdict | string | |
| malware_family | string | |
| threat_score | integer | |
| first_seen | string | |
| last_seen | string |
JSON Schema
{
"$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"
}
}
}