Amazon Inspector · Schema

CvssScoreAdjustmentList

CvssScoreAdjustmentList schema

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning
View JSON Schema on GitHub

JSON Schema

inspector-cvss-score-adjustment-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-cvss-score-adjustment-list-schema.json",
  "title": "CvssScoreAdjustmentList",
  "description": "CvssScoreAdjustmentList schema",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "metric",
      "reason"
    ],
    "properties": {
      "metric": {
        "allOf": [
          {
            "$ref": "#/components/schemas/NonEmptyString"
          },
          {
            "description": "The metric used to adjust the CVSS score."
          }
        ]
      },
      "reason": {
        "allOf": [
          {
            "$ref": "#/components/schemas/NonEmptyString"
          },
          {
            "description": "The reason the CVSS score has been adjustment."
          }
        ]
      }
    },
    "description": "Details on adjustments Amazon Inspector made to the CVSS score for a finding."
  }
}