Amazon EC2 Image Builder · JSON Structure

Ec2 Image Builder Cvss Score Structure

Amazon Inspector generates a risk score for each finding. This score helps you to prioritize findings, to focus on the most critical findings and the most vulnerable resources. The score uses the Common Vulnerability Scoring System (CVSS) format. This format is a modification of the base CVSS score that the National Vulnerability Database (NVD) provides. For more information about severity levels, see Severity levels for Amazon Inspector findings in the Amazon Inspector User Guide.

Type: object Properties: 4
Amazon Web ServicesAutomationContainer ImagesEC2Image BuildingVirtual Machine Images

CvssScore is a JSON Structure definition published by Amazon EC2 Image Builder, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

baseScore scoringVector version source

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-ec2-image-builder/refs/heads/main/json-structure/ec2-image-builder-cvss-score-structure.json",
  "name": "CvssScore",
  "description": "Amazon Inspector generates a risk score for each finding. This score helps you to prioritize findings, to focus on the most critical findings and the most vulnerable resources. The score uses the Common Vulnerability Scoring System (CVSS) format. This format is a modification of the base CVSS score that the National Vulnerability Database (NVD) provides. For more information about severity levels, see <a href=\"https://docs.aws.amazon.com/inspector/latest/user/findings-understanding-severity.html\">Severity levels for Amazon Inspector findings</a> in the <i>Amazon Inspector User Guide</i>.",
  "type": "object",
  "properties": {
    "baseScore": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonNegativeDouble"
        },
        {
          "description": "The CVSS base score."
        }
      ]
    },
    "scoringVector": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The vector string of the CVSS score."
        }
      ]
    },
    "version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The CVSS version that generated the score."
        }
      ]
    },
    "source": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The source of the CVSS score."
        }
      ]
    }
  }
}