StackRox · JSON Structure

Stackrox Alert Structure

Security policy violation alert structure

Type: object Properties: 0
ComplianceContainer SecurityKubernetesOpen SourceRuntime ProtectionSecurity

Stackrox Alert Structure is a JSON Structure definition published by StackRox.

Meta-schema:

JSON Structure

Raw ↑
{
  "title": "StackRox Alert",
  "description": "Security policy violation alert structure",
  "type": "object",
  "fields": [
    { "name": "id", "type": "string", "required": true },
    { "name": "state", "type": "string", "enum": ["ACTIVE", "SNOOZED", "RESOLVED"], "required": true },
    { "name": "lifecycleStage", "type": "string", "enum": ["BUILD", "DEPLOY", "RUNTIME"] },
    { "name": "policy.name", "type": "string" },
    { "name": "policy.severity", "type": "string" },
    { "name": "deployment.name", "type": "string" },
    { "name": "deployment.namespace", "type": "string" },
    { "name": "deployment.clusterName", "type": "string" },
    { "name": "time", "type": "string", "format": "date-time" }
  ]
}