CvssScoreAdjustment

Details about an adjustment that Amazon Inspector made to the CVSS score for a finding.

Amazon Web ServicesAutomationContainer ImagesEC2Image BuildingVirtual Machine Images

Properties

Name Type Description
metric object
reason object
View JSON Schema on GitHub

JSON Schema

ec2-image-builder-cvss-score-adjustment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2-image-builder/refs/heads/main/json-schema/ec2-image-builder-cvss-score-adjustment-schema.json",
  "title": "CvssScoreAdjustment",
  "description": "Details about an adjustment that Amazon Inspector made to the CVSS score for a finding.",
  "type": "object",
  "properties": {
    "metric": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The metric that Amazon Inspector used to adjust the CVSS score."
        }
      ]
    },
    "reason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The reason for the CVSS score adjustment."
        }
      ]
    }
  }
}