Saasment · Schema
Saasment Misconfiguration
A security misconfiguration detected by Saasment SSPM across monitored SaaS applications.
SaaS SecuritySSPMCloud SecurityCost OptimizationComplianceMisconfigurations
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the misconfiguration |
| title | string | Short descriptive title of the misconfiguration |
| description | string | Detailed description of the security issue |
| severity | string | Risk severity level of the misconfiguration |
| category | string | Security category (e.g., Identity Security, Access Control, Data Protection) |
| app_id | string | ID of the SaaS application where the misconfiguration was detected |
| app_name | string | Name of the SaaS application |
| status | string | Current remediation status |
| remediation | string | Step-by-step remediation guidance |
| detected_at | string | Timestamp when the misconfiguration was first detected |
| updated_at | string | Timestamp of last status update |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/saasment/main/json-schema/saasment-misconfiguration-schema.json",
"title": "Saasment Misconfiguration",
"description": "A security misconfiguration detected by Saasment SSPM across monitored SaaS applications.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the misconfiguration"
},
"title": {
"type": "string",
"description": "Short descriptive title of the misconfiguration"
},
"description": {
"type": "string",
"description": "Detailed description of the security issue"
},
"severity": {
"type": "string",
"enum": ["critical", "high", "medium", "low", "info"],
"description": "Risk severity level of the misconfiguration"
},
"category": {
"type": "string",
"description": "Security category (e.g., Identity Security, Access Control, Data Protection)"
},
"app_id": {
"type": "string",
"description": "ID of the SaaS application where the misconfiguration was detected"
},
"app_name": {
"type": "string",
"description": "Name of the SaaS application"
},
"status": {
"type": "string",
"enum": ["open", "in_progress", "resolved", "accepted"],
"description": "Current remediation status"
},
"remediation": {
"type": "string",
"description": "Step-by-step remediation guidance"
},
"detected_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the misconfiguration was first detected"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp of last status update"
}
},
"required": ["id", "title", "severity", "category", "app_id", "status"]
}