Aqua Security · JSON Structure

Aqua Security Api Policy Request Structure

PolicyRequest schema from Aqua Security API

Type: object Properties: 4 Required: 1
Cloud NativeContainersKubernetesRuntime ProtectionSecurityVulnerability Scanning

PolicyRequest is a JSON Structure definition published by Aqua Security, describing 4 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name description block_failed maximum_score

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "high-security",
      "description": "Policy name (unique)"
    },
    "description": {
      "type": "string",
      "example": "Policy blocking high severity vulnerabilities",
      "description": "Policy description"
    },
    "block_failed": {
      "type": "boolean",
      "example": true,
      "description": "Block containers failing policy"
    },
    "maximum_score": {
      "type": "double",
      "example": 7.0,
      "description": "Maximum CVSS score threshold"
    }
  },
  "required": [
    "name"
  ],
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aqua-security/refs/heads/main/json-structure/aqua-security-api-policy-request-structure.json",
  "name": "PolicyRequest",
  "description": "PolicyRequest schema from Aqua Security API"
}