Palo Alto Networks · Schema

ThreatHistoryEntry

A historical record of a signature version.

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
id integer
name string
version string Content version number for this history entry.
release_time string
action string
View JSON Schema on GitHub

JSON Schema

threat-vault-api-threat-history-entry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ThreatHistoryEntry",
  "description": "A historical record of a signature version.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/threat-vault-api-threat-history-entry-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "version": {
      "type": "string",
      "description": "Content version number for this history entry."
    },
    "release_time": {
      "type": "string",
      "format": "date-time"
    },
    "action": {
      "type": "string",
      "enum": [
        "added",
        "modified",
        "deprecated"
      ]
    }
  }
}