Amazon Inspector · JSON Structure

Inspector Cvss Score Adjustment Structure

Details on adjustments Amazon Inspector made to the CVSS score for a finding.

Type: object Properties: 2 Required: 2
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

CvssScoreAdjustment is a JSON Structure definition published by Amazon Inspector, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

metric reason

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-structure.json",
  "name": "CvssScoreAdjustment",
  "description": "Details on adjustments Amazon Inspector made to the CVSS score for a finding.",
  "type": "object",
  "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."
        }
      ]
    }
  },
  "required": [
    "metric",
    "reason"
  ]
}