Home
Palo Alto Networks
Prisma Cloud Dspm Api Data Security Alert Structure
Prisma Cloud Dspm Api Data Security Alert Structure
DataSecurityAlert schema from Palo Alto Networks Prisma Cloud DSPM API
Type: object
Properties: 14
Cloud Security Cybersecurity Firewall Network Security SASE SOAR Threat Intelligence XDR
DataSecurityAlert is a JSON Structure definition published by Palo Alto Networks, describing 14 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
id
title
description
severity
status
alertType
dataStoreId
dataStoreName
cloudProvider
cloudAccountId
region
affectedClassifications
detectedAt
resolvedAt
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$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."
}
}
}