{ "$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-release-notes-list-structure.json", "name": "ReleaseNotesList", "description": "ReleaseNotesList schema from Palo Alto Networks Threat Vault API", "type": "object", "properties": { "success": { "type": "boolean" }, "data": { "type": "array", "items": { "type": "object", "description": "Content release notes for a specific PAN-OS content version.", "properties": { "version": { "type": "string", "description": "Content version identifier (e.g., 8000-7000)." }, "type": { "type": "string", "enum": [ "content", "antivirus", "wildfire" ] }, "release_date": { "type": "date" }, "new_signatures": { "type": "int32", "description": "Number of new signatures in this release." }, "modified_signatures": { "type": "int32", "description": "Number of modified signatures in this release." }, "deprecated_signatures": { "type": "int32", "description": "Number of deprecated signatures in this release." }, "notes": { "type": "string", "description": "Release notes text." } } } }, "total": { "type": "int32" }, "offset": { "type": "int32" }, "limit": { "type": "int32" } } }