Amazon Inspector · JSON Structure

Inspector Cvss Score Adjustment List Structure

CvssScoreAdjustmentList schema

Type: array Properties: 0
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

CvssScoreAdjustmentList is a JSON Structure definition published by Amazon Inspector. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-structure/inspector-cvss-score-adjustment-list-structure.json",
  "name": "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."
  }
}