{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/threat-vault-api-threat-history-list-structure.json", "name": "ThreatHistoryList", "description": "ThreatHistoryList schema from Palo Alto Networks Threat Vault API", "type": "object", "properties": { "success": { "type": "boolean" }, "data": { "type": "array", "items": { "type": "object", "description": "A historical record of a signature version.", "properties": { "id": { "type": "int32" }, "name": { "type": "string" }, "version": { "type": "string", "description": "Content version number for this history entry." }, "release_time": { "type": "datetime" }, "action": { "type": "string", "enum": [ "added", "modified", "deprecated" ] } } } }, "total": { "type": "int32" }, "offset": { "type": "int32" }, "limit": { "type": "int32" } } }