{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/prisma-cloud-dspm-api-data-security-alert-structure.json", "name": "DataSecurityAlert", "description": "DataSecurityAlert schema from Palo Alto Networks Prisma Cloud DSPM API", "type": "object", "properties": { "id": { "type": "string", "description": "Unique alert identifier." }, "title": { "type": "string", "description": "Short description of the alert condition." }, "description": { "type": "string", "description": "Detailed alert description." }, "severity": { "type": "string", "description": "Alert severity level.", "enum": [ "critical", "high", "medium", "low" ] }, "status": { "type": "string", "description": "Current alert status.", "enum": [ "open", "dismissed", "resolved" ] }, "alertType": { "type": "string", "description": "Category of data security alert.", "enum": [ "newPublicDataStore", "newSensitiveData", "accessAnomaly", "policyViolation", "dataExfiltration" ] }, "dataStoreId": { "type": "string", "description": "Affected data store identifier." }, "dataStoreName": { "type": "string", "description": "Name of the affected data store." }, "cloudProvider": { "type": "string", "description": "Cloud provider of the affected data store.", "enum": [ "aws", "azure", "gcp" ] }, "cloudAccountId": { "type": "string", "description": "Cloud account identifier." }, "region": { "type": "string", "description": "Cloud region of the affected data store." }, "affectedClassifications": { "type": "array", "description": "Data classification labels involved in the alert.", "items": { "type": "string" } }, "detectedAt": { "type": "datetime", "description": "Timestamp when the alert was generated." }, "resolvedAt": { "type": "datetime", "description": "Timestamp when the alert was resolved. Null if still open." } } }